/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #B249B7;
    --primary-dark: #8A3A8F;
    --secondary-color: #C85DD0;
    --accent-color: #E8C5EB;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #F9F0FA;
    --bg-white: #FFFFFF;
    --success-color: #25D366;
    --warning-color: #FFC107;
    --gradient-primary: linear-gradient(135deg, #B249B7 0%, #C85DD0 100%);
    --gradient-soft: linear-gradient(135deg, #F9F0FA 0%, #F5E5F7 100%);
    --shadow-sm: 0 2px 8px rgba(178, 73, 183, 0.1);
    --shadow-md: 0 4px 16px rgba(178, 73, 183, 0.15);
    --shadow-lg: 0 8px 32px rgba(178, 73, 183, 0.2);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Logo */
.hero-logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-image {
    max-width: 400px;
    height: auto;
    display: block;
}

/* Sticky Notification Bar */
.sticky-notification-bar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #FFF3CD 0%, #FFE69C 100%);
    border-bottom: 2px solid var(--warning-color);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease-out;
}

.sticky-notification-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.notification-icon {
    font-size: 20px;
    color: var(--warning-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon i,
.notification-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.notification-text {
    margin: 0;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

.notification-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.25;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Wrapper - Layout de duas colunas */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Video - Vídeo vertical */
.hero-video {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 9 / 16; /* Proporção vertical (9:16) */
    height: auto;
    max-height: 85vh; /* Limita altura máxima a 85% da viewport */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background: #000;
    z-index: 1;
}

.video-vimeo-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
}

.hero-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    z-index: 1;
    object-fit: cover;
}

/* Estilos de bloqueio e botões removidos - vídeo usa controles nativos do YouTube */

.video-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.video-link:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.video-link p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 20px;
}

/* Título separado para mobile/desktop */
.hero-title-mobile-first {
    display: none;
}

.hero-title-desktop {
    display: block;
}

/* Features CTA Section - Call to Action Destacado e Chamativo */
.features-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #B249B7 0%, #C85DD0 50%, #8A3A8F 100%);
    position: relative;
    overflow: hidden;
    margin: 60px 0;
    border-radius: 0;
}

.features-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    animation: slidePattern 20s linear infinite;
    pointer-events: none;
}

@keyframes slidePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.cta-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-text-content {
    background: rgba(255, 255, 255, 0.98);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-text-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #B249B7, #C85DD0, #8A3A8F, #B249B7);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.cta-main-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.highlight-gradient {
    background: linear-gradient(135deg, #B249B7 0%, #C85DD0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
}

.cta-features-list {
    text-align: left;
    margin-bottom: 40px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.cta-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

.cta-feature-item:last-child {
    margin-bottom: 0;
}

.cta-check-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-feature-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

.cta-button-features {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px 50px;
    background: linear-gradient(135deg, #B249B7 0%, #C85DD0 100%);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(178, 73, 183, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.cta-button-features::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: left 0.5s;
}

.cta-button-features:hover::before {
    left: 100%;
}

.cta-button-features:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(178, 73, 183, 0.6);
    background: linear-gradient(135deg, #C85DD0 0%, #B249B7 100%);
}

.cta-button-features:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-button-text {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.cta-button-text i,
.cta-button-text svg {
    width: 28px;
    height: 28px;
}

.cta-button-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-button-features:hover .cta-button-arrow {
    transform: translateX(5px);
}

.cta-button-arrow i,
.cta-button-arrow svg {
    width: 24px;
    height: 24px;
}

.cta-guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 15px;
}

.cta-guarantee-text i,
.cta-guarantee-text svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}


.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: left;
    flex: 0 1 auto;
    white-space: nowrap;
}

.feature-item i,
.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-cta-text {
    font-size: 18px;
    color: var(--text-dark);
    margin: 30px 0 20px;
    font-weight: 600;
}

.hero-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    margin: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #8A3A8F 0%, #B249B7 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-primary {
    background: var(--gradient-primary);
}

.cta-large {
    padding: 24px 55px;
    font-size: 20px;
}

.cta-pulse {
    animation: pulse 2s infinite;
}

.cta-icon {
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-icon i,
.cta-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(178, 73, 183, 0.3);
    }
    50% {
        box-shadow: 0 4px 24px rgba(178, 73, 183, 0.6);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pain Section */
.pain-section {
    padding: 80px 0;
    background: var(--bg-white);
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-intro {
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pain-points-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.pain-section-image {
    flex: 0 0 auto;
    width: 320px;
    max-width: 100%;
}

.pain-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.pain-points {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
}

/* Primeira linha: 4 itens, cada um ocupando 3 colunas (12/4 = 3) */
.pain-item:nth-child(1),
.pain-item:nth-child(2),
.pain-item:nth-child(3),
.pain-item:nth-child(4) {
    grid-column: span 3;
}

/* Segunda linha: 3 itens, cada um ocupando 4 colunas (12/3 = 4) */
.pain-item:nth-child(5) {
    grid-column: span 4;
}

.pain-item:nth-child(6) {
    grid-column: span 4;
}

.pain-item:nth-child(7) {
    grid-column: span 4;
}


.pain-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-sizing: border-box;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pain-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pain-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.pain-icon i,
.pain-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.pain-item p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.solution-box {
    background: var(--gradient-soft);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.solution-text {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.training-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.training-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.training-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

.training-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.training-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.training-benefit i,
.training-benefit svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.training-benefit span {
    font-size: 16px;
    color: var(--text-dark);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: var(--gradient-soft);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.module-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.module-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.module-card > .module-header {
    padding: 35px 35px 20px 35px;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.module-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.module-number {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.module-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.module-card > .module-description,
.module-card > .module-subtitle,
.module-card > .module-list {
    padding: 0 35px;
}

.module-card > .module-description {
    padding-bottom: 20px;
}

.module-card > .module-list {
    padding-bottom: 35px;
}

.module-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.module-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.module-list {
    list-style: none;
    padding: 0;
}

.module-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
}

.module-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.content-delivery {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-top: 50px;
    box-shadow: var(--shadow-sm);
}

.delivery-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.delivery-item i,
.delivery-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.delivery-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    max-height: 550px;
    transition: height 0.3s ease;
}

.carousel-track {
    display: flex;
    width: 100%;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.carousel-slide img {
    width: 100%;
    max-height: 550px;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: var(--transition);
    color: var(--primary-color);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Bonuses Section */
.bonuses-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.bonus-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.bonus-number {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 15px;
    background: var(--bg-white);
    border-radius: 20px;
    margin-bottom: 15px;
}

.bonus-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.bonus-instructor {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
}

.instructor-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.instructor-info {
    flex: 1;
}

.instructor-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.instructor-crf {
    font-size: 14px;
    color: var(--text-light);
}

.bonus-description {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.bonus-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.bonuses-summary {
    background: var(--gradient-soft);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-top: 50px;
}

.summary-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
}

.summary-item i,
.summary-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.summary-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.summary-note {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.8;
    margin: 0;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--bg-white);
}

.offer-section .section-title {
    color: var(--bg-white);
    margin-bottom: 50px;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.offer-main {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius);
}

.offer-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
}

.offer-subtitle:first-child {
    margin-top: 0;
}

.offer-list {
    list-style: none;
    padding: 0;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.offer-list li i,
.offer-list li svg {
    width: 24px;
    height: 24px;
    color: var(--bg-white);
    flex-shrink: 0;
}

.offer-pricing {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 20px;
}

.pricing-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pricing-old {
    font-size: 32px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.pricing-note {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.pricing-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.pricing-current .currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-current .amount {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.offer-pricing .cta-button {
    width: 100%;
    justify-content: center;
    margin: 0;
}

/* Diferenciais Section */
.diferenciais-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.diferencial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.diferencial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.diferencial-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-icon i,
.diferencial-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.diferencial-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.diferencial-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--gradient-soft);
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.guarantee-box {
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon i,
.guarantee-icon svg {
    width: 64px;
    height: 64px;
    stroke-width: 1.5;
}

.guarantee-seal {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.guarantee-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-text {
    padding: 20px;
}

.about-highlight {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-intro {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-credentials {
    list-style: none;
    margin-bottom: 30px;
}

.about-credentials li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.about-credentials li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.mission-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
}

.mission-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: var(--gradient-soft);
    text-align: center;
}

.final-text {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    align-items: flex-start;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-nav a:hover {
    color: var(--accent-color);
    opacity: 1;
    padding-left: 5px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-crf {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bg-white);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    opacity: 0.9;
}

.social-link:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateX(5px);
}

.social-link i,
.social-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-credit {
    margin-top: 15px !important;
    font-size: 13px !important;
    opacity: 0.8;
    font-style: italic;
}

.footer-credit a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--bg-white);
    text-decoration: underline;
}

.footer-credit i,
.footer-credit svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    color: var(--bg-white);
    opacity: 0.8;
    margin: 0 4px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .whatsapp-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.whatsapp-float span {
    display: none;
}

.whatsapp-float.hidden {
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-video {
        order: 2; /* Vídeo aparece depois do texto no mobile */
    }
    
    .hero-content {
        order: 1; /* Texto aparece primeiro no mobile */
        text-align: center;
    }
    
    .video-container {
        max-width: 95%;
        width: 95%;
        aspect-ratio: 9 / 16;
        max-height: 85vh;
    }
    
    .offer-content {
        grid-template-columns: 1fr;
    }
    
    .offer-pricing {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        top: 20px;
        padding: 12px 20px;
    }
    
    .logo-image {
        max-width: 150px;
    }
    
    .sticky-notification-bar {
        padding: 10px 0;
    }
    
    .notification-text {
        font-size: 13px;
    }
    
    .notification-icon {
        font-size: 18px;
    }
    
    .notification-icon i,
    .notification-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-wrapper {
        gap: 25px;
        display: flex;
        flex-direction: column;
    }
    
    /* No mobile: título primeiro, depois subtítulos, depois vídeo, depois botão */
    .hero-title-mobile-first {
        display: block;
        order: 1;
        margin-bottom: 0;
    }
    
    .hero-title-desktop {
        display: none;
    }
    
    /* No mobile: reorganiza elementos do hero-wrapper */
    .hero-content {
        order: 2;
        display: contents; /* Remove o container para permitir order nos filhos */
    }
    
    .hero-title-desktop {
        display: none;
    }
    
    .hero-subtitle-1 {
        order: 2;
    }
    
    .hero-subtitle-2 {
        order: 3;
    }
    
    .hero-video {
        order: 4; /* Vídeo depois do segundo subtítulo */
    }
    
    .cta-button {
        order: 5; /* Botão depois do vídeo */
    }
    
    .hero-note {
        order: 6;
    }
    
    .video-container {
        max-width: 95%;
        width: 95%;
        aspect-ratio: 9 / 16;
        max-height: 85vh;
    }
    
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-item {
        white-space: normal;
    }
    
    .features-cta-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .cta-text-content {
        padding: 40px 30px;
    }
    
    .cta-main-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .cta-features-list {
        padding: 25px 20px;
    }
    
    .cta-feature-item {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .cta-button-features {
        padding: 20px 40px;
        font-size: 18px;
        width: 100%;
        max-width: 400px;
    }
    
    .cta-guarantee-text {
        font-size: 14px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .pain-section {
        padding: 60px 0;
        overflow-x: hidden;
    }

    .pain-points-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .pain-section-image {
        width: 100%;
        order: -1;
    }
    
    .pain-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .pain-item {
        grid-column: 1 !important;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        box-sizing: border-box;
    }
    
    .pain-item:nth-child(1),
    .pain-item:nth-child(2),
    .pain-item:nth-child(3),
    .pain-item:nth-child(4),
    .pain-item:nth-child(5),
    .pain-item:nth-child(6),
    .pain-item:nth-child(7) {
        grid-column: 1 !important;
    }
    
    .solution-box,
    .training-box {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 30px 20px;
    }

    .content-section {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .modules-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 0 40px 0;
    }
    
    .module-card {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .module-image {
        height: 220px;
    }

    .module-card > .module-header {
        padding: 30px 20px 15px 20px;
    }

    .module-card > .module-description,
    .module-card > .module-subtitle,
    .module-card > .module-list {
        padding: 0 20px;
    }

    .module-card > .module-description {
        padding-bottom: 15px;
    }

    .module-card > .module-list {
        padding-bottom: 30px;
    }
    
    .module-header {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .module-number {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .module-title {
        font-size: 20px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .module-description {
        font-size: 15px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .module-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .module-list {
        font-size: 14px;
    }
    
    .module-list li {
        padding: 8px 0;
        padding-left: 20px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .delivery-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .content-delivery {
        padding: 30px 20px;
    }
    
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    
    .delivery-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
    }
    
    .delivery-item i !important,
    .delivery-item svg !important {
        margin-bottom: 5px !important;
    }

    .testimonials-carousel {
        max-width: 100%;
        margin: 30px auto 0;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-container {
        min-height: 300px;
        max-height: 550px;
    }
    
    .carousel-slide {
        padding: 15px;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 16px;
    }

    .cta-large {
        padding: 18px 35px;
        font-size: 18px;
    }

    .pricing-current .amount {
        font-size: 56px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-logo {
        top: 15px;
        padding: 10px 15px;
    }
    
    .logo-image {
        max-width: 120px;
    }
    
    .sticky-notification-bar {
        padding: 8px 0;
    }
    
    .sticky-notification-bar .container {
        padding: 0 15px;
    }
    
    .notification-content {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .notification-text {
        font-size: 11px;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .notification-icon {
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .notification-icon i,
    .notification-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-wrapper {
        gap: 20px;
        display: flex;
        flex-direction: column;
    }
    
    /* No mobile: título primeiro, depois subtítulos, depois vídeo, depois botão */
    .hero-title-mobile-first {
        display: block;
        order: 1;
        margin-bottom: 0;
    }
    
    .hero-title-desktop {
        display: none;
    }
    
    /* No mobile: reorganiza elementos do hero-wrapper */
    .hero-content {
        order: 2;
        padding: 0;
        display: contents; /* Remove o container para permitir order nos filhos diretos do hero-wrapper */
    }
    
    .hero-title-desktop {
        display: none;
    }
    
    /* Elementos filhos do hero-content agora são filhos diretos do hero-wrapper via display: contents */
    .hero-subtitle-1 {
        order: 2;
        padding: 0 15px;
    }
    
    .hero-subtitle-2 {
        order: 3;
        padding: 0 15px;
    }
    
    .hero-video {
        order: 4; /* Vídeo depois do segundo subtítulo */
    }
    
    .cta-button {
        order: 5; /* Botão depois do vídeo */
        margin: 0 15px;
    }
    
    .hero-note {
        order: 6;
        padding: 0 15px;
    }
    
    .video-container {
        max-width: 90vw !important;
        width: 90%;
        margin: 0 auto;
        aspect-ratio: 9 / 16;
        max-height: 85vh;
    }
    
    .hero-title {
        font-size: 22px;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .hero-cta-text {
        font-size: 15px;
    }
    
    .features-cta-section {
        padding: 40px 0;
        margin: 30px 0;
    }
    
    .cta-text-content {
        padding: 25px 15px;
        border-radius: 20px;
    }
    
    .cta-main-title {
        font-size: 24px;
        letter-spacing: 0;
        line-height: 1.3;
    }
    
    .cta-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .cta-features-list {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .cta-feature-item {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .cta-check-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .cta-button-features {
        padding: 16px 25px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .cta-button-text {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-button-text i,
    .cta-button-text svg {
        width: 20px;
        height: 20px;
    }
    
    .cta-guarantee-text {
        font-size: 12px;
        flex-wrap: wrap;
        text-align: center;
    }

    .hero-background img {
        object-position: 70%;
    }

    .section-title {
        font-size: 22px;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .section-intro {
        font-size: 15px;
        line-height: 1.5;
    }

    .pain-section {
        padding: 40px 0;
        overflow-x: hidden;
    }
    
    .pain-points-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .pain-section-image {
        width: 100%;
        order: -1;
    }

    .pain-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    
    .pain-item {
        grid-column: 1 !important;
        padding: 25px 20px;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .pain-item:nth-child(1),
    .pain-item:nth-child(2),
    .pain-item:nth-child(3),
    .pain-item:nth-child(4),
    .pain-item:nth-child(5),
    .pain-item:nth-child(6),
    .pain-item:nth-child(7) {
        grid-column: 1 !important;
    }
    
    .pain-item p {
        font-size: 15px;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .solution-box,
    .training-box {
        padding: 25px 20px;
        margin: 30px 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .solution-text,
    .training-title,
    .training-subtitle {
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 15px;
        line-height: 1.6;
    }
    
    .solution-text,
    .training-title,
    .training-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .content-section {
        padding: 40px 0;
        overflow-x: hidden;
    }
    
    .modules-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 0 30px 0 !important;
    }
    
    .module-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .module-image {
        height: 200px;
    }

    .module-card > .module-header {
        padding: 25px 15px 12px 15px !important;
    }

    .module-card > .module-description,
    .module-card > .module-subtitle,
    .module-card > .module-list {
        padding: 0 15px !important;
    }

    .module-card > .module-description {
        padding-bottom: 15px !important;
    }

    .module-card > .module-list {
        padding-bottom: 25px !important;
    }
    
    .module-header {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .module-number {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .module-title {
        font-size: 18px !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .module-description {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .module-subtitle {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .module-list {
        font-size: 13px;
    }
    
    .module-list li {
        padding: 6px 0;
        padding-left: 18px;
        font-size: 13px;
        line-height: 1.4;
    }
    
    .delivery-title {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .content-delivery {
        padding: 25px 15px;
    }
    
    .delivery-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .delivery-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 12px;
    }
    
    .delivery-item i,
    .delivery-item svg {
        margin-bottom: 5px;
    }
    
    .delivery-item span {
        font-size: 14px;
    }
    
    .module-title {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .module-list {
        font-size: 14px;
    }
    
    .bonuses-grid {
        gap: 20px;
    }
    
    .bonus-card {
        padding: 20px 15px;
    }
    
    .bonus-title {
        font-size: 18px;
    }
    
    .bonus-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .offer-content {
        gap: 30px;
    }
    
    .offer-list {
        font-size: 14px;
    }
    
    .pricing-current .amount {
        font-size: 42px;
    }
    
    .pricing-text,
    .pricing-note {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonials-carousel {
        margin: 20px auto 0;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .carousel-container {
        min-height: 250px;
        max-height: 500px;
    }
    
    .carousel-slide {
        padding: 10px;
    }

    .footer {
        padding: 40px 15px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-logo-img {
        max-width: 150px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-nav {
        text-align: center;
    }

    .footer-description {
        font-size: 13px;
        text-align: center;
    }

    .footer-crf {
        text-align: center;
        font-size: 13px;
    }

    .social-links {
        align-items: center;
    }

    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .carousel-slide img {
        max-width: 100%;
        height: auto;
    }
    
    .carousel-dots {
        margin-top: 20px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .diferencial-card {
        padding: 20px 15px;
    }
    
    .diferencial-title {
        font-size: 18px;
    }
    
    .diferencial-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .about-content {
        gap: 20px;
    }
    
    .about-image img {
        max-width: 100%;
        height: auto;
    }
    
    .about-text {
        padding: 0 15px;
    }
    
    .about-credentials {
        font-size: 14px;
    }
    
    .faq-question {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .faq-question h3 {
        font-size: 14px;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .faq-icon {
        align-self: flex-end;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 14px 25px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
    }

    .cta-large {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .footer {
        padding: 30px 15px;
        text-align: center;
    }
    
    .footer p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.features-cta-section,
.pain-section,
.content-section,
.testimonials-section,
.bonuses-section,
.offer-section,
.guarantee-section,
.about-section,
.final-cta-section {
    animation: fadeIn 0.6s ease-out;
}

