html {
  scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}



 .treinamento-hero-section {
    background: linear-gradient(135deg, #E09200 0%, #F5A623 50%, #E09200 100%);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

/* Container Principal Integrado */
.hero-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    gap: 4rem;
    position: relative;
    z-index: 2;
}
/* Card Único Integrado */
.hero-content {
    margin-top: 5%;
    background: #f8f9fa;
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    padding: 4rem;
    text-align: left;
    position: relative;
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    flex: 1;
}
/* Badge Exclusivo */
.exclusive-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E09200, #F5A623);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 
        0 8px 24px rgba(224, 146, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.exclusive-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
/* Título Principal */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.hero-title .highlight {
    
    background: linear-gradient(135deg, #E09200, #F5A623, #E09200);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
/* Divider Elegante */
.hero-divider {
    width: 250px;
    height: 4px;
    background: linear-gradient(90deg, #E09200, #F5A623);
    margin: 2rem 0;
    border-radius: 2px;
    position: relative;
}
.hero-divider::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    animation: fillBar 2s ease-in-out infinite;
}
@keyframes fillBar {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}
/* Container CTA */
.hero-cta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
}
/* Botão CTA Melhorado */
.cta-button {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.225rem 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 12px 28px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E09200, #F5A623);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cta-button:hover::before {
    opacity: 1;
}
.cta-button:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.2),
        0 0 0 1px rgba(224, 146, 0, 0.3);
}
.cta-button span,
.cta-button svg {
    position: relative;
    z-index: 1;
}
.cta-button svg {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}
.cta-button:hover svg {
    transform: translateX(4px);
}
/* Badge de Localização */
.location-badge {
    margin-top: 13%;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(224, 146, 0, 0.08);
    border: 1px solid rgba(224, 146, 0, 0.2);
    color: #B8820A;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}
.location-badge strong {
    color: #E09200;
}
/* Área do Texto */
.hero-text {
    display: flex;
    flex-direction: column;
}

/* Imagem Dentro do Card */
.hero-image.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  flex: 1;
  width: 100%;
  max-height: 700px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.carousel-track img {
  width: 100%;
  max-height: 800px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 0; /* Já está no contêiner com border-radius */
}


        .second-image{
            position: relative;
            overflow: hidden;
            border-radius: 24px;    
            flex: 1;  
        }

        .second-image img {
            width: 100%;
            max-height: 800px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

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

        .card-img {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            position: relative;
            gap: 4rem;
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .hero-container {
                gap: 2rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
                padding: 3rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-cta-container {
                align-items: center;
            }
        }

        @media (min-width: 770px) and (max-width: 1170px) {
            .hero-content {
                margin-top: 10%;
            }
        }

        @media (max-width: 768px) {
            .treinamento-hero-section {
                padding: 0.765rem;
            }

            .hero-content {
                padding: 2rem 1.5rem;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .cta-button {
                padding: 0.9rem 2.2rem;
                font-size: 0.89rem;
            }

            .location-badge {
                background: #f8f9fa;
                border: none;
                margin-top: 15px;
                font-size: 0.9rem;
            }

            .hero-image img {
                min-height: 300px;
            }

            .hero-divider {
                margin: 0 auto;
            }
        }

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
    position: relative;
}

.pricing-container {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #232323;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.pricing-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E09200, #F5A623);
    border-radius: 2px;
}

.pricing-grid {
    display: grid;
    gap: 3rem;
    margin-top: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #E09200;
}

.pricing-card.featured::before {
    content: 'EXCLUSIVO';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #E09200, #F5A623);
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(224, 146, 0, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.pricing-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #232323;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #E09200;
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.pricing-period-sale {
    font-size: 1.2rem;
    color: #19952c;
    margin-bottom: 1rem;
}

.pricing-original {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: #333;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E09200;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #E09200, #F5A623);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(224, 146, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(224, 146, 0, 0.4);
}

.pricing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
              transparent, 
              rgba(255, 255, 255, 0.3), 
              transparent);
    transition: 0.6s;
}

.pricing-cta:hover::before {
    left: 100%;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
    background: white;
}

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

.benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #232323;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E09200, #F5A623);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #E09200;
    box-shadow: 0 20px 40px rgba(224, 146, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E09200, #F5A623);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.benefit-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #232323;
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #232323 0%, #111111 100%);
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.whatsapp-cta {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: linear-gradient(90deg, #25D366, #128C7E);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(18, 140, 126, 0.4);
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
              transparent, 
              rgba(255, 255, 255, 0.3), 
              transparent);
    transition: 0.6s;
}

.whatsapp-cta:hover::before {
    left: 100%;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem;
        margin: 6rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        margin: 1.5rem auto;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .hero-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .guarantee-text {
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
    
    .pricing-amount {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-title,
    .benefits-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .whatsapp-cta {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}