/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: #fff;
}

h2 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, #141414 0%, #2a2a2a 100%);
    padding: 2rem 0;
    text-align: center;
}

.logo h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #141414 0%, #2a2a2a 100%);
    padding: 4rem 0;
    color: #fff;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-text p {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;
}

.hero-stats {
    text-align: center;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.rating {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #fff;
    font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: #f8f9fa;
    padding: 5rem 0;
}

.services h2 {
    color: #141414;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-number {
    background: linear-gradient(135deg, #141414, #2a2a2a);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.service-content h3 {
    color: #141414;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.stats {
    background: linear-gradient(135deg, #141414 0%, #2a2a2a 100%);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta {
    background: #f8f9fa;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: #141414;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.price-section {
    margin: 3rem 0;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    color: #141414;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    color: #141414;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.cents {
    font-size: 2.5rem;
    color: #141414;
    font-weight: 600;
}

.price-note {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* ===== BOTÕES ===== */
.btn-whatsapp {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: pulseButton 2s infinite ease-in-out;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: #fff;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 200px;
    text-align: center;
    animation: pulseButton 2s infinite ease-in-out;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: #fff;
}

/* ===== FOOTER ===== */
.footer {
    background: #141414;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: #ccc;
    margin: 0;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.8rem;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.7rem;
        max-width: 120px;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação de pulsação para botões do WhatsApp */
@keyframes pulseButton {
    0% { 
        transform: scale(1); 
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% { 
        transform: scale(1.1); 
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

.service-item {
    animation: fadeInUp 0.6s ease-out;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }