/* ===== CSS REFINADO PARA PÁGINA PRINCIPAL (PALETA AZUL) ===== */

/* Variáveis CSS Aprimoradas */
:root {
    /* Paleta de Cores Azul Premium */
    --primary-color: #0D3B66;       /* substituindo marrom */
    --primary-light: #1D5F99;       /* azul mais claro */
    --primary-dark: #0A2A4D;        /* azul escuro */
    
    --secondary-color: #1E81B0;     /* substituindo laranja queimado */
    --secondary-light: #4FA3D1;     /* azul claro */
    --secondary-dark: #166D91;      /* azul médio escuro */
    
    --accent-color: #61A5C2;        /* substituindo dourado */
    --accent-light: #A7C7E7;        /* azul bem claro */
    --accent-dark: #3D85A3;         /* azul médio */

    /* Cores Neutras */
    --white: #FFFFFF;
    --cream: #F8F9FA;               /* neutro claro */
    --beige: #EAF1F8;               /* neutro levemente azulado */
    --light-brown: #B0D4F1;         /* substituindo tons marrons */
    --text-dark: #0B2A40;
    --text-light: #4A6C8C;
    --text-muted: #7D9BB0;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    --gradient-warm: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));

    /* Tipografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Dancing Script', cursive;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(13, 59, 102, 0.1);
    --shadow-md: 0 4px 16px rgba(13, 59, 102, 0.15);
    --shadow-lg: 0 8px 32px rgba(13, 59, 102, 0.2);
    --shadow-xl: 0 16px 48px rgba(13, 59, 102, 0.25);

    /* Bordas */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

.text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botões Refinados */
.btn {
    font-weight: 600;
    padding: 12px 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-success {
    background: linear-gradient(135deg, #00BFA5, #007B7F);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Hero Section Refinado */
.hero-section-refined {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 59, 102, 0.8) 0%,
        rgba(30, 129, 176, 0.7) 50%,
        rgba(97, 165, 194, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

/* Hero Badge, Title, Subtitle, Stats e Visual continuam iguais, só adaptando cores para azul */

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    animation: float 6s ease-in-out infinite;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-content h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.card-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* Matrizes Grid */
.card-crown {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

/* CTA */
.section-cta {
    background: var(--gradient-primary);
    color: var(--white);
}

/* WhatsApp Float */
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00BFA5, #007B7F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .floating-cards { display: none; }
    .filhotes-grid, .matrizes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
    .section-filhotes, .section-about, .section-matrizes, .section-cta { padding: 4rem 0; }
    .whatsapp-float { bottom: 1rem; right: 1rem; }
    .whatsapp-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}

/* Animações */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity:1; transform:translateY(0);} }
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-20px);} }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(0,191,165,0.7);} 70%{ box-shadow:0 0 0 10px rgba(0,191,165,0);} 100%{ box-shadow:0 0 0 0 rgba(0,191,165,0);} }


/* Responsividade */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-cards {
        display: none;
    }
    
    .filhotes-grid,
    .matrizes-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .feature-item {
        gap: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .gallery-secondary {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .section-filhotes,
    .section-about,
    .section-matrizes,
    .section-cta {
        padding: 4rem 0;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
