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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: url('BG - site mentoria.png') center center / cover no-repeat;
    color: white;
    padding: 120px 30px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    color: #4a90e2;
    position: relative;
    display: inline-block;
}

.hero .subtitle {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 30px;
    color: #e8e8e8;
    line-height: 1.6;
}

.hero .subtitle strong {
    color: #4a90e2;
    font-weight: 600;
}

.hero p {
    font-size: 1.15em;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #d0d0d0;
    font-weight: 300;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    padding-bottom: 45%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe,
.video-container #hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.mute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.mute-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}

.mute-overlay svg {
    width: 80px;
    height: 80px;
    stroke: white;
    margin-bottom: 20px;
    animation: pulse-icon 2s ease-in-out infinite;
}

.mute-overlay p {
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.mute-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Botões */
.cta-button {
    display: inline-block;
    background: #4a90e2;
    color: #ffffff;
    padding: 20px 50px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #357abd;
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.5);
    transform: translateY(-2px);
}

/* Ícones SVG */
.icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    stroke: #0a2463;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Separador de seção */
.section-divider {
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 36, 99, 0.03) 50%, transparent 100%);
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, transparent, #4a90e2, transparent);
}

/* Seção de Proposta de Valor */
.value-proposition {
    padding: 100px 30px;
    background-color: #f8f9fb;
    position: relative;
}

.value-proposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.01) 10px, rgba(0, 0, 0, 0.01) 20px),
        radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 36, 99, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.value-proposition h2 {
    color: #0a2463;
    font-size: 2.5em;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.value-proposition p {
    font-size: 1.1em;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: #333;
}

.value-proposition p strong {
    color: #0a2463;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 50px;
    border-radius: 8px;
    margin: 50px auto;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.highlight-box p {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.value-proposition ul {
    list-style: none;
    max-width: 900px;
    margin: 50px auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.value-proposition ul li {
    padding: 25px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.15em;
    border-bottom: 1px solid #e8e8e8;
    color: #333;
}

.value-proposition ul li:last-child {
    border-bottom: none;
}

.value-proposition ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #4a90e2;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.15);
}

.value-proposition ul li:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

/* Seção de Cases */
.cases {
    padding: 100px 30px;
    background-color: #ffffff;
    position: relative;
}

.cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, 0.01) 3px, rgba(0, 0, 0, 0.01) 6px),
        radial-gradient(circle at 15% 20%, rgba(74, 144, 226, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(10, 36, 99, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.cases h2 {
    color: #0a2463;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.cases-intro {
    text-align: center;
    font-size: 1.15em;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.case-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 36, 99, 0.1);
    border-color: #4a90e2;
}

.case-card .icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.case-card .icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.case-card .avatar-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4a90e2;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.case-card .avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-card h3 {
    color: #1a1a1a;
    font-size: 1.4em;
    margin-bottom: 8px;
    font-weight: 700;
}

.case-card .role {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.case-card .result {
    background: #f8f9fb;
    color: #0a2463;
    font-weight: 700;
    font-size: 1.25em;
    margin: 20px -40px;
    padding: 20px 40px;
    border-left: 4px solid #4a90e2;
}

.case-card .achievement {
    color: #333;
    font-weight: 600;
    margin-top: 20px;
    font-size: 1.05em;
}

/* Seção da Jornada */
.journey {
    padding: 100px 30px;
    background: linear-gradient(135deg, #001f3f 0%, #0a2463 100%);
    color: white;
    position: relative;
}

.journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255, 255, 255, 0.02) 15px, rgba(255, 255, 255, 0.02) 30px);
    pointer-events: none;
}

.journey h2 {
    font-size: 2.5em;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.journey-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.journey-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4a90e2;
}

.journey-step .step-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 144, 226, 0.2);
    border: 2px solid #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.journey-step .step-icon svg {
    width: 30px;
    height: 30px;
    stroke: #4a90e2;
}

.journey-step h3 {
    font-size: 1.6em;
    margin-bottom: 25px;
    font-weight: 600;
    color: #ffffff;
}

.journey-step p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #d0d0d0;
}

/* Seção Sobre o Mentor */
.about-mentor {
    padding: 100px 30px;
    background-color: #f8f9fb;
    position: relative;
}

.about-mentor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(0, 0, 0, 0.01) 12px, rgba(0, 0, 0, 0.01) 24px);
    pointer-events: none;
}

.about-mentor h2 {
    color: #0a2463;
    font-size: 2.5em;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.mentor-content {
    max-width: 900px;
    margin: 0 auto;
}

.mentor-content h3 {
    color: #0a2463;
    font-size: 1.8em;
    margin: 50px 0 30px 0;
    font-weight: 600;
    text-align: center;
}

.mentor-content p {
    font-size: 1.15em;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #333;
}

.mentor-photo-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.mentor-photo {
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #4a90e2;
    box-shadow: 0 10px 40px rgba(10, 36, 99, 0.2);
    position: relative;
}

.mentor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.companies-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    padding: 40px 20px;
    border-top: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.7);
}

.company-logo:hover {
    transform: translateY(-5px);
    filter: grayscale(0%) opacity(1);
}

.company-logo img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.company-logo img[src*="magalu"],
.company-logo img[src*="natura"] {
    max-height: 100px;
    max-width: 220px;
}

.mentor-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.mentor-stat-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.mentor-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(10, 36, 99, 0.12);
    border-color: #4a90e2;
}

.mentor-stat-box .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mentor-stat-box .icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.mentor-stat-box .number {
    font-size: 2.8em;
    font-weight: 700;
    color: #0a2463;
    margin-bottom: 10px;
    line-height: 1;
}

.mentor-stat-box .label {
    font-size: 1em;
    color: #666;
    font-weight: 500;
}

.mentor-highlights {
    background: linear-gradient(135deg, #001f3f 0%, #0a2463 100%);
    color: white;
    padding: 50px;
    border-radius: 8px;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(10, 36, 99, 0.15);
}

.mentor-highlights h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 35px;
}

.mentor-highlights ul {
    list-style: none;
}

.mentor-highlights ul li {
    padding: 20px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.15em;
    line-height: 1.8;
}

.mentor-highlights ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #4a90e2;
    border-radius: 50%;
}

.mentor-highlights ul li:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

/* Seção de Investimento */
.investment {
    padding: 100px 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    text-align: center;
    position: relative;
    display: none;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.investment.visible {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.investment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
}

.investment h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.price-box {
    background: linear-gradient(135deg, #001f3f 0%, #0a2463 100%);
    max-width: 700px;
    margin: 0 auto 60px auto;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 15px 60px rgba(74, 144, 226, 0.3);
    border: 1px solid rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 1;
}

.price-box .label {
    font-size: 1em;
    color: #d0d0d0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.price-box .price {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
    color: #ffffff;
}

.price-box .price::before {
    content: 'R$ ';
    font-size: 0.5em;
    vertical-align: super;
}

.price-box .installments {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #d0d0d0;
}

.price-box .installments strong {
    color: #4a90e2;
}

.included {
    background: rgba(255, 255, 255, 0.05);
    max-width: 800px;
    margin: 60px auto;
    padding: 50px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.included h3 {
    font-size: 1.8em;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.included ul {
    list-style: none;
}

.included ul li {
    padding: 20px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.15em;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.included ul li:last-child {
    border-bottom: none;
}

.included ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #4a90e2;
    border-radius: 50%;
}

.included ul li:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

.urgency {
    margin-top: 50px;
    padding: 40px;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid #4a90e2;
    border-radius: 8px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.urgency p {
    font-size: 1.2em;
    font-weight: 600;
    color: #ffffff;
    margin: 10px 0;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid #4a90e2;
    border-radius: 12px;
}

.guarantee-badge .badge-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-badge .badge-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.guarantee-badge .badge-content h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffffff;
}

.guarantee-badge .badge-content p {
    font-size: 1.05em;
    color: #d0d0d0;
    line-height: 1.6;
    margin: 0;
}

/* Footer CTA */
.footer-cta {
    padding: 100px 30px;
    background: linear-gradient(135deg, #001f3f 0%, #0a2463 100%);
    text-align: center;
    color: white;
    position: relative;
    display: none;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.footer-cta.visible {
    display: block;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
    pointer-events: none;
}

.footer-cta h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.footer-cta .cta-button {
    position: relative;
    z-index: 1;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 60px;
        background: url('BG - site mentoria.png') center center / cover no-repeat;
        min-height: 100vh;
    }

    .value-proposition,
    .cases,
    .journey,
    .about-mentor,
    .investment,
    .footer-cta {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 1.6em;
        line-height: 1.4;
        margin-bottom: 25px;
    }

    .hero .subtitle {
        font-size: 1.1em;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .value-proposition h2,
    .cases h2,
    .journey h2,
    .about-mentor h2,
    .investment h2,
    .footer-cta h2 {
        font-size: 1.8em;
        line-height: 1.3;
    }

    .value-proposition h3 {
        font-size: 1.5em;
    }

    .value-proposition p,
    .mentor-content p {
        font-size: 1em;
        line-height: 1.7;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 0.95em;
        width: 100%;
        max-width: 100%;
    }

    .video-container {
        padding-bottom: 56.25%;
        max-width: 100%;
        margin: 30px auto;
    }

    .mute-overlay svg {
        width: 60px;
        height: 60px;
    }

    .mute-overlay p {
        font-size: 1em;
        padding: 0 20px;
    }

    .journey-steps,
    .cases-grid,
    .mentor-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .price-box {
        padding: 40px 25px;
    }

    .price-box .price {
        font-size: 2.5em;
    }

    .price-box .installments {
        font-size: 1.1em;
    }

    .included {
        padding: 30px 20px;
    }

    .included h3 {
        font-size: 1.5em;
    }

    .included ul li {
        font-size: 1em;
        padding: 15px 0 15px 35px;
    }

    .included ul li:before {
        width: 20px;
        height: 20px;
    }

    .case-card,
    .journey-step {
        padding: 30px 20px;
    }

    .case-card h3 {
        font-size: 1.2em;
    }

    .case-card .result {
        margin: 20px -20px;
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .case-card .achievement {
        font-size: 0.95em;
    }

    .highlight-box,
    .mentor-highlights {
        padding: 30px 20px;
    }

    .highlight-box p {
        font-size: 1em;
    }

    .mentor-highlights ul li {
        font-size: 1em;
        padding: 15px 0 15px 35px;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .guarantee-badge .badge-icon {
        width: 60px;
        height: 60px;
    }

    .guarantee-badge .badge-icon svg {
        width: 30px;
        height: 30px;
    }

    .guarantee-badge .badge-content h4 {
        font-size: 1.3em;
    }

    .guarantee-badge .badge-content p {
        font-size: 0.95em;
    }

    .urgency {
        padding: 30px 20px;
    }

    .urgency p {
        font-size: 1.1em;
    }

    .value-proposition ul,
    .highlight-box {
        padding: 30px 20px;
    }

    .value-proposition ul li {
        font-size: 1em;
        padding: 15px 0 15px 35px;
    }

    .companies-logos {
        gap: 30px;
        padding: 30px 10px;
    }

    .company-logo {
        height: 40px;
    }

    .company-logo img {
        max-height: 40px;
        max-width: 100px;
    }

    .company-logo img[src*="magalu"],
    .company-logo img[src*="natura"] {
        max-height: 65px;
        max-width: 150px;
    }

    .mentor-stat-box .number {
        font-size: 2.2em;
    }

    .mentor-stat-box .label {
        font-size: 0.9em;
    }

    .journey-step h3 {
        font-size: 1.4em;
    }

    .journey-step p {
        font-size: 0.95em;
    }

    .container {
        padding: 0 20px;
    }
}

/* Animações de Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animação para ícones */
.animate-icon {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-icon.animated {
    opacity: 1;
    transform: scale(1);
}

/* Delays para criar efeito cascata */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* Ocultar conteúdo até que o vídeo seja assistido por 5 minutos */
.value-proposition,
.cases,
.journey,
.about-mentor,
.hero .cta-button {
    display: none;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.value-proposition.visible,
.cases.visible,
.journey.visible,
.about-mentor.visible,
.hero .cta-button.visible {
    display: block;
}

.hero .cta-button.visible {
    display: inline-block;
}
