/* ==========================================================
   Variáveis de Design e Cores (Alinhado com a Logo)
========================================================== */
:root {
    --primary-blue: #00344F;     /* Azul Oficial: Pantone 2965 CP */
    --navy-light: #004d75;       /* Variação mais clara do Azul Oficial */
    --pink-accent: #EA96B0;      /* Rosa Oficial: Pantone 2024 UP */
    --pink-light: #fbf0f3;       /* Fundo rosa muito fraquinho para ícones */
    --white: #FFFFFF;            /* Branco */
    --gray-bg: #F8F9FA;          /* Cinza fundo claro */
    --text-dark: #333333;        /* Cor do Texto geral */
    --text-muted: #5A5A5A;       /* Texto suavizado para parágrafos */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif; /* Corresponde a Champagne & Limousines do manual */
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3 {
    font-family: 'Neuton', serif; /* Fonte primária do manual */
    color: var(--primary-blue);
    font-weight: 700;
}

/* Botões Modernos */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--pink-accent);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #f7aabf; /* Rosa ligeiramente mais claro */
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(234, 150, 176, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-4px);
}

/* Navbar (Cabeçalho com efeito de vidro / blur) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 70px; /* Altura ideal para o menu superior */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--pink-accent);
    transition: width 0.3s ease;
    border-radius: 5px;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5% 8rem;
    background: radial-gradient(circle at top left, var(--pink-light) 0%, var(--white) 60%);
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 90%;
    /* Efeito orgânico muito elegante para a imagem */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 30px 60px rgba(10, 28, 64, 0.15);
    border: 8px solid var(--white);
    animation: morphShadow 8s infinite alternate ease-in-out;
}

/* Seção de Serviços */
.services {
    padding: 8rem 5%;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--pink-accent);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    border-bottom: 5px solid transparent;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.08);
    border-bottom: 5px solid var(--pink-accent);
}

.card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background-color: var(--pink-light);
    border-radius: 20px;
    color: var(--primary-blue);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Call to Action Box */
.cta-section {
    padding: 6rem 5% 8rem;
    background-color: var(--gray-bg);
}

.cta-box {
    background: var(--primary-blue);
    border-radius: 40px;
    padding: 5rem 3rem;
    text-align: center;
    color: var(--white);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 28, 64, 0.25);
    background-image: radial-gradient(circle at top right, var(--navy-light), var(--primary-blue) 70%);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--pink-accent);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
}

.cta-box h2, .cta-box p, .cta-box a {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-box .btn-primary {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
}

/* Footer */
footer {
    background-color: #002336; /* Tom mais escuro do Azul Oficial */
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    color: var(--white);
    font-size: 2rem;
}

.footer-brand h2 span {
    color: var(--pink-accent);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    opacity: 0.8;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    opacity: 0.5;
    font-size: 0.95rem;
}

/* Efeitos Especiais de Animação CSS (Classes adicionadas via Javascript) */

@keyframes morphShadow {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: scale(1); }
    50% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; transform: scale(1.02); }
    100% { border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%; transform: scale(1); }
}

.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-up { opacity: 0; transform: translateY(60px); transition: opacity 1s ease-out, transform 1s ease-out; }
.slide-up.visible { opacity: 1; transform: translateY(0); }

.slide-left { opacity: 0; transform: translateX(60px); transition: opacity 1s ease-out, transform 1s ease-out; }
.slide-left.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Responsividade (Para Celulares e Tablets pequenos) */
@media (max-width: 900px) {
    .nav-links { display: none; }
    
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 3rem;
    }
    .hero-content { margin-top: 3rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-buttons { 
        justify-content: center; 
        flex-direction: column; 
    }
    
    .cta-box { padding: 3rem 1.5rem; }
    .cta-box h2 { font-size: 2.2rem; }
}
