/* ============================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-primaria: #007BFF;
    --cor-escuro: #333333;
    --cor-acento: #FFA500;
    --cinza-claro: #e5e7eb;
    --branco: #ffffff;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--cor-escuro);
    line-height: 1.6;
    background: var(--branco);
    padding-top: 76px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--cor-acento);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.navbar-brand .brand-logo {
    height: 50px;
    transition: height 0.3s ease;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cor-acento);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--cor-acento) !important;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-escuro) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.text-accent {
    color: var(--cor-acento);
}

.btn-accent {
    background: var(--cor-acento);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.btn-accent:hover {
    background: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--cor-acento);
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: white;
    margin: 10px 0;
    font-weight: 800;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   BENEFIT CARDS
   ============================================ */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--cor-primaria);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cor-primaria));
    /* Verificar com a Luana o estilo */
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 25%, #833ab4 50%, #c13584 75%, #e1306c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--cor-escuro);
}

.benefit-card p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--cor-primaria), var(--cor-acento));
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.step-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--cor-primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    z-index: 1;
}

.step-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--cor-escuro);
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   NUMBER CARDS
   ============================================ */
.number-card {
    padding: 20px;
}

.number-card i {
    opacity: 0.9;
}

.number-card h3 {
    font-size: 3rem;
    font-weight: 800;
    margin: 15px 0 5px;
}

.number-card h3::after {
    content: '+';
    font-size: 2rem;
}

.number-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* ============================================
   SERVICE INCLUDE CARDS
   ============================================ */
.service-include-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--cor-primaria);
}

.service-include-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
}

.service-include-card h4 {
    color: var(--cor-escuro);
    margin: 15px 0;
    font-size: 1.3rem;
}

.service-include-card p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   WHATSAPP CTA
   ============================================ */
.whatsapp-cta {
    display: inline-block;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    transform: scale(1.1);
}

.whatsapp-cta img {
    max-width: 250px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* ============================================
   FOOTER
   ============================================ */
.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: var(--cor-acento) !important;
}

/* ============================================
   BOTÃO VOLTAR AO TOPO
   ============================================ */
#voltar-ao-topo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
}

#voltar-ao-topo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}

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

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

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        padding-left: 70px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand .brand-logo {
        height: 50px;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .number-card h3 {
        font-size: 2.5rem;
    }
    
    #voltar-ao-topo {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .navbar-collapse {
        background: rgba(51, 51, 51, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 10px;
    }
    
    .step-content:hover {
        transform: none;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 70px;
    }
    
    .navbar-brand .brand-logo {
        height: 45px;
    }
    
    .hero-section h1 {
        font-size: 1.6rem !important;
    }
    
    .display-5 {
        font-size: 1.8rem !important;
    }
    
    .btn-lg {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .benefit-card,
    .service-include-card {
        margin-bottom: 20px;
    }
    
    .process-step {
        padding-left: 60px;
        margin-bottom: 30px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .number-card h3 {
        font-size: 2rem;
    }
    
    .whatsapp-cta img {
        max-width: 200px;
    }
}

@media (max-width: 400px) {
    .hero-section h1 {
        font-size: 1.4rem !important;
    }
    
    .btn-lg {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}