/* =========================================
   VARIÁVEIS DE COR E ESTILO GLOBAL
   ========================================= */
   :root {
    --primary: #0A192F; /* Navy Blue Profundo */
    --primary-light: #112240;
    --accent: #FBBF24; /* Amarelo/Dourado de Destaque */
    --accent-hover: #F59E0B;
    --bg-light: #F8FAFC; /* Branco gelo para áreas de respiro */
    --text-main: #334155;
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
    --border-color: #E2E8F0;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* =========================================
   ELEMENTOS REUTILIZÁVEIS E BOTÕES
   ========================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--accent);
    color: #1E293B; /* Texto escuro no botão dourado gera um contraste excelente */
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary);
}

.highlight {
    color: var(--accent);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 800;
}

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

/* =========================================
   HEADER
   ========================================= */
.header {
    background-color: var(--primary);
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Tratamento do Logo Redondo */
.logo-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

/* =========================================
   HERO SECTION (Primeira Dobra)
   ========================================= */
.hero {
    background-color: var(--primary);
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 180px 0 100px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: rgba(251, 191, 36, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    color: #CBD5E1;
    margin-bottom: 40px;
    max-width: 500px;
}

.trust-indicators {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #94A3B8;
}

.trust-item i {
    color: #10B981; /* Verde de checklist */
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--primary-light);
}

.hero-image img {
    transform: scale(1.05); /* Efeito suave na imagem premium */
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1);
}

/* =========================================
   FEATURES (Serviços e Benefícios)
   ========================================= */
.features {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background-color: #fff;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(10, 25, 47, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-link:hover {
    color: var(--accent-hover);
    gap: 8px; /* Microinteração visual na seta */
}

/* =========================================
   CARROSSEL LOJA FÍSICA
   ========================================= */
.store-tour {
    padding: 100px 0;
    background-color: var(--primary-light);
    color: var(--text-light);
}

.store-tour .section-title {
    color: var(--accent);
}

.store-tour .section-subtitle {
    color: #CBD5E1;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 48px auto 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--primary);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(10, 25, 47, 0.8);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* =========================================
   REVIEWS (Prova Social Google)
   ========================================= */
.reviews {
    padding: 100px 0;
    background-color: #fff; /* Fundo diferente para quebrar */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

.google-cta {
    text-align: center;
    margin-top: 48px;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #fff;
    color: #4285F4; /* Azul do Google */
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #E2E8F0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-google:hover {
    background-color: #F8FAFC;
    box-shadow: var(--shadow-md);
    border-color: #4285F4;
}

/* =========================================
   CTA BANNER (Abaixo das Avaliações)
   ========================================= */
.cta-banner {
    background-color: var(--primary);
    padding: 80px 0;
    text-align: center;
    color: var(--text-light);
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   FOOTER (Rodapé)
   ========================================= */
.footer {
    background-color: #050C17; /* Mesmo tom do Navy, só que mais escuro */
    color: #94A3B8;
    padding: 80px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.logo-img-footer {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 250px;
}

.footer-info h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.safe-site {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 12px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

/* =========================================
   ANIMAÇÕES DE ENTRADA
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.d-1 { animation-delay: 0.1s; }
.d-2 { animation-delay: 0.3s; }
.d-3 { animation-delay: 0.5s; }
.d-4 { animation-delay: 0.7s; }

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(251, 191, 36, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.pulse-animation {
    animation: pulse 2.5s infinite;
}

/* =========================================
   RESPONSIVIDADE (Mobile)
   ========================================= */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        margin: 0 auto 32px;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .features-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Melhorias de padding geral para mobile (reduzindo respiros excessivos e focando agilidade) */
    .hero {
        padding: 130px 0 60px;
    }
    
    .features, .reviews, .store-tour, .cta-banner {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary, .btn-outline, .btn-google {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    /* Otimização do Carrossel e Botões para celular */
    .carousel-container {
        margin-top: 24px;
        border-width: 2px;
        border-radius: 12px;
    }
    
    .carousel-slide img {
        height: 320px; /* Impede que a foto ocupe a tela inteira, garantindo scroll natural */
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        background-color: rgba(10, 25, 47, 0.9);
    }

    .carousel-btn.prev {
        left: 8px;
    }

    .carousel-btn.next {
        right: 8px;
    }

    /* Centralização de Footer */
    .footer {
        padding: 60px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .footer-info h4 {
        justify-content: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .safe-site {
        justify-content: center;
    }
}
