/* ==========================================================================
   Design System & Variáveis
   ========================================================================== */
:root {
    --navy-dark: #0A192F;
    --navy-medium: #112240;
    --navy-light: #1D3557;
    --navy-pale: #F4F7FC;
    --gold: #C5A880;
    --gold-light: #DFD0B8;
    --gold-dark: #A9875A;
    --white: #FFFFFF;
    --cream: #FAF9F6;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --emergency-red: #D946EF; /* Toque violeta moderno */
    --accent-glow: rgba(197, 168, 128, 0.2);
    --navy-glow: rgba(10, 25, 47, 0.85);
    --border-color: rgba(197, 168, 128, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   Reset & Configurações Globais
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Componentes Comuns & Botões
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--navy-dark);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.5);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

.btn-emergency-cta {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.btn-emergency-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 150%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-emergency-cta:hover::before {
    left: 110%;
}

.btn-emergency-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
}

.btn-phone {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--gold);
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.btn-phone:hover {
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--gold-light);
}

.btn-link {
    background: none;
    border: none;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-link:hover {
    color: var(--gold-dark);
}

.btn-link svg {
    transition: var(--transition-fast);
}

.btn-link:hover svg {
    transform: translateX(4px);
}

/* Badges e Títulos de Seção */
.section-badge {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 56px auto;
}

.section-subtitle.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 48px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.header.scrolled {
    background-color: var(--navy-glow);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: var(--gold);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--white);
    font-weight: 500;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--gold-light);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: var(--navy-dark);
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    overflow: hidden;
    width: 100%;
}

.hero-banner-wrapper {
    width: 100%;
    position: relative;
    background-color: var(--navy-dark);
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-cta-bar {
    background-color: var(--navy-glow);
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    width: 100%;
    z-index: 5;
    position: relative;
}

.hero-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.hero-cta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-cta-left .pulse-container {
    margin-bottom: 0;
    flex-shrink: 0;
}

.hero-cta-label {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
}

.hero-phone-link {
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.hero-phone-link:hover {
    color: var(--gold);
}

.hero-cta-actions {
    display: flex;
    gap: 16px;
}

.hero-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .hero-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-cta-left {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-cta-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .hero-cta-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Gradiente de fundo elegante e sobreposição */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.82) 0%, rgba(10, 25, 47, 0.55) 50%, rgba(10, 25, 47, 0.10) 100%);
    z-index: 2;
}

/* Partículas no Canvas */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.hero-card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    border-top: 2px solid var(--gold);
}

.pulse-container {
    position: relative;
    width: 16px;
    height: 16px;
    margin-bottom: 24px;
}

.pulse-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #10B981;
}

.pulse-ring {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 4px solid rgba(16, 185, 129, 0.5);
    animation: pulsate 1.8s ease-out infinite;
}

.hero-card-glass h3 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-card-glass p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.hero-call-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold-light);
    font-weight: 700;
    display: block;
    transition: var(--transition-fast);
}

.hero-call-link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    z-index: 3;
    animation: bounce 2s infinite;
}

/* Animações Aninhadas */
@keyframes pulsate {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* Classes de Animação Entrada */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Quem Somos Section
   ========================================================================== */
.quem-somos-section {
    padding: 100px 0;
    background-color: var(--cream);
}

.section-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.collage-container {
    position: relative;
    width: 100%;
    height: 520px;
}

.main-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 420px;
    background-image: url('../assets/about_team_official.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.secondary-frame {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52%;
    height: 240px;
    background-image: url('../assets/about_comfort.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 6px solid var(--cream);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.about-experience {
    position: absolute;
    bottom: 40px;
    right: -10px;
    background: var(--navy-dark);
    border: 2px solid var(--gold);
    padding: 24px 32px;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-text strong {
    color: var(--navy-dark);
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.value-item {
    background-color: var(--white);
    padding: 24px;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.value-icon {
    margin-bottom: 16px;
}

.value-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy-dark);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.human-care-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 24px 30px;
    border-radius: 4px;
    border-right: 4px solid var(--gold);
}

.human-care-card svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.human-care-card h5 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.human-care-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Serviços Section (Grid & Cards)
   ========================================================================== */
.servicos-section {
    padding: 100px 0;
    background-color: var(--navy-pale);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 36px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(197, 168, 128, 0.08);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
    border-color: rgba(197, 168, 128, 0.3);
}

.service-card:hover .service-card-icon {
    background-color: var(--navy-dark);
    color: var(--gold);
}

/* ==========================================================================
   Diferenciais Section
   ========================================================================== */
.diferenciais-section {
    padding: 100px 0;
    background-color: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.diferencial-item {
    text-align: center;
    padding: 20px 10px;
}

.diff-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px auto;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    background-color: var(--cream);
    transition: var(--transition-smooth);
}

.diferencial-item h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--navy-dark);
}

.diferencial-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.diferencial-item:hover .diff-icon {
    background-color: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--gold);
    transform: rotate(360deg);
}

/* ==========================================================================
   Como Funciona Section (Jornada)
   ========================================================================== */
.como-funciona-section {
    padding: 100px 0;
    background-color: var(--navy-pale);
    border-top: 1px solid var(--border-color);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Linha central */
.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: rgba(197, 168, 128, 0.3);
    z-index: 1;
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--navy-dark);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}

.step-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border-bottom: 3px solid transparent;
    transition: var(--transition-smooth);
    width: 100%;
}

.step-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy-dark);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.timeline-step:hover .step-number {
    background-color: var(--gold);
    color: var(--navy-dark);
    transform: scale(1.1);
}

.timeline-step:hover .step-content {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(10, 25, 47, 0.06);
    border-color: var(--gold);
}

/* ==========================================================================
   Depoimentos Section
   ========================================================================== */
.depoimentos-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background-color: var(--cream);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.01);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--navy-dark);
    margin-bottom: 30px;
    line-height: 1.5;
}

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--navy-dark);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-dark);
}

.author-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.4);
    background-color: var(--white);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background-color: var(--navy-dark);
    color: var(--gold);
    border-color: var(--navy-dark);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--navy-dark);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--cream);
    border-top: 1px solid var(--border-color);
}

.faq-info {
    padding-right: 40px;
}

.faq-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.faq-support-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 4px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 10px 35px rgba(0,0,0,0.03);
}

.faq-support-box h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.faq-support-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-trigger span:first-child {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy-dark);
    padding-right: 16px;
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--gold-dark);
    transition: var(--transition-fast);
}

/* Linha horizontal */
.faq-icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

/* Linha vertical */
.faq-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

/* Estado Expandido */
.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid rgba(0,0,0,0.02);
}

/* ==========================================================================
   Contato Section & Form
   ========================================================================== */
.contato-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.contact-form-container {
    background-color: var(--navy-pale);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.form-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(10, 25, 47, 0.1);
    border-radius: 4px;
    background-color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-status {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.form-status.success {
    display: block;
    color: #059669;
}

.form-status.error {
    display: block;
    color: #DC2626;
}

.contact-info-container {
    padding-left: 20px;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(197, 168, 128, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.info-item h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--navy-dark);
}

.info-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-link {
    font-weight: 600;
    color: var(--navy-dark);
}

.contact-link:hover {
    color: var(--gold-dark);
}

/* Mapa customizado elegante */
.map-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.contact-map {
    height: 300px;
    width: 100%;
    background-color: var(--navy-dark);
    /* Filtro CSS para estilizar o mapa Leaflet de forma premium e combinando com o azul-marinho */
    filter: invert(90%) hue-rotate(190deg) brightness(85%) contrast(110%);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 80px 0 0 0;
    border-top: 2px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-links h3, 
.footer-contact-info h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--gold-light);
    position: relative;
    padding-bottom: 8px;
}

.footer-links h3::after, 
.footer-contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-links ul a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.footer-phone-cta {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.footer-phone-cta:hover {
    color: var(--gold-light);
}

.footer-bottom {
    background-color: #061020;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Modais Premium de Serviços
   ========================================================================== */
.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 16, 32, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 24px;
}

.service-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.service-modal-box {
    background-color: var(--white);
    border-top: 4px solid var(--gold);
    border-radius: 8px;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.service-modal-overlay.active .service-modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy-dark);
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--gold-dark);
}

.modal-body {
    padding: 48px;
}

.modal-header-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.modal-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header-container h2 {
    font-size: 1.8rem;
    color: var(--navy-dark);
}

.modal-detail-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

.modal-features-list {
    background-color: var(--navy-pale);
    padding: 24px 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.modal-features-list h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-dark);
    margin-bottom: 16px;
}

.modal-features-list ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.modal-features-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
}

.modal-actions {
    display: flex;
    gap: 16px;
}

/* ==========================================================================
   Botão Flutuante do WhatsApp
   ========================================================================== */
.btn-whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.btn-whatsapp-floating:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #20BA5A;
}

.floating-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid rgba(37, 211, 102, 0.5);
    z-index: -1;
    animation: pulsate 1.8s ease-out infinite;
}

/* ==========================================================================
   Configurações Responsivas (Media Queries)
   ========================================================================== */

/* Telas Grandes (Notebooks e Monitores) */
@media (max-width: 1200px) {
    .section-grid-2 {
        gap: 48px;
    }
}

/* Tablets (iPad, etc.) */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .header {
        background-color: var(--navy-dark);
        padding: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--navy-dark);
        transition: var(--transition-smooth);
        padding: 40px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        justify-content: center;
    }

    .section-grid-2 {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-line {
        left: 28px;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }
    
    .timeline-step {
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Celulares (iPhone, Android, etc.) */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hide-mobile {
        display: none !important;
    }
    
    .btn {
        padding: 10px 22px;
    }
    
    .btn-lg {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .modal-body {
        padding: 30px 24px;
    }
    
    .modal-header-container h2 {
        font-size: 1.4rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}
