/**
 * Cliente Leader - Custom Styles
 * Clean and professional design with Bootstrap 5
 */

:root {
    --primary-color: #d4a574;
    --primary-dark: #b8885a;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --light-bg: #f8f9fa;
    --dark-overlay: rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.7;
}

/* Header Simples */
.header-simple {
    background-color: #faf8f4;
    
}

.logo-main {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-main:hover {
    transform: scale(1.05);
}

/* Main Section */
.main-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #667eea;
}

.hero-badge i {
    color: #667eea;
    margin-right: 5px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-subtitle {
    font-size: 1.3rem;
    color: #555;
    font-weight: 500;
}

/* Action Cards */
.action-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.action-card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.action-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.card-schedule .action-card-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.card-reserve .action-card-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.card-consult .action-card-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.card-litters .action-card-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
}

.action-card:hover .action-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.action-card-body {
    padding: 1rem 2rem 1.5rem;
    flex-grow: 1;
    text-align: center;
}

.action-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.action-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.action-card-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.action-card-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

.card-schedule:hover .action-card-link {
    color: #667eea;
}

.card-reserve:hover .action-card-link {
    color: #f5576c;
}

.card-consult:hover .action-card-link {
    color: #00f2fe;
}

.card-litters:hover .action-card-link {
    color: #43e97b;
}

.action-card-link i {
    transition: transform 0.3s ease;
}

.action-card:hover .action-card-link i {
    transform: translateX(5px);
}

/* Tailwind-style Utilities */
.grid {
    display: grid;
}

.gap-8 {
    gap: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.border {
    border: 1px solid #e5e7eb;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.text-center {
    text-align: center;
}

.p-6 {
    padding: 1.5rem;
}

.p-0 {
    padding: 0;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.font-semibold {
    font-weight: 600;
}

.leading-relaxed {
    line-height: 1.625;
}

.text-golden {
    color: #667eea;
}

.text-foreground {
    color: #333;
}

.text-muted-foreground {
    color: #6c757d;
}

.text-card-foreground {
    color: #333;
}

.bg-card\/80 {
    background-color: rgba(255, 255, 255, 0.8);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.transition-all {
    transition: all 0.3s ease;
}

.duration-300 {
    transition-duration: 300ms;
}

.hover\:shadow-warm:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.hover\:transform:hover {
    transform: translateY(-5px) scale(1.02);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out forwards;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.2rem;
}

.action-card-text {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.action-card-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.action-card:hover .action-card-arrow {
    transform: translateX(10px);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* CTA Cards */
.cta-box {
    padding: 3rem 2rem;
}

.cta-card {
    padding: 2.5rem 2rem;
    border-radius: 12px;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-box {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: 12px 12px 0 0 !important;
    padding: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: em;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.form-control.is-invalid {
    border-color: var(--danger-color);
}

.invalid-feedback {
    display: block;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    height: 100%;
}
title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-home {
        min-height: 60vh;
    }
    
    .logo-main {
        max-width: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-box {
        padding: 2rem 1rem;
    }
    
    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 0.9
    padding: 1rem 1.5rem;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.alert-danger {
    background-color: #f8d7da;
    color: #842029;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-bg);
}

/* Footer */
footer {
    border-top: 2px solid var(--light-bg);
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .main-subtitle {
        font-size: 1rem;
    }
    
    .main-section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .logo-main {
        max-width: 150px;
    }
    
    .action-card {
        padding: 2.5rem 2rem;
        min-height: 300px;
    }
    
    .action-card-icon {
        font-size: 4rem;
    }
    
    .action-card-title {
        font-size: 1.5rem;
    }
    
    .action-card-text {
        font-size: 1rem;
    }
}

/* Utilities */
.shadow-sm-hover:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.transition-all {
    transition: all 0.3s ease;
}
