/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rosa-primary: #F472B6;
    --rosa-primary-light: #FCE7F3;
    --rosa-primary-dark: #EC4899;
    --fundo: #F8FAFC;
    --branco: #FFFFFF;
    --texto-escuro: #0F172A;
    --texto-medio: #475569;
    --texto-claro: #94A3B8;
    --borda: #E2E8F0;
    --sombra-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --sombra-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --sombra-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 16px;
    --radius-sm: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--fundo);
    color: var(--texto-escuro);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Hero Section */
.hero {
    background: #f8fafc;
    padding: 80px 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
}

.hero-logo {
    width: 80px;
    height: 80px;
    margin: 0 0 24px 0;
    display: block;
    object-fit: contain;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--sombra-md), 0 0 0 0 rgba(244, 114, 182, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--sombra-lg), 0 0 0 10px rgba(244, 114, 182, 0);
    }
}

.hero-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #DB2777;
    background: rgba(252, 231, 243, 0.5);
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--texto-escuro);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    max-width: 600px;
}

.hero-authority {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 24px;
    padding: 16px 0;
}

.hero-authority-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--texto-medio);
    font-weight: 500;
}

.hero-authority-item svg {
    color: var(--rosa-primary);
    flex-shrink: 0;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--texto-escuro);
    opacity: 0.7;
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 560px;
}

.hero-lucro-frase {
    font-size: 1rem;
    color: var(--texto-escuro);
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background: var(--rosa-primary);
    color: var(--branco);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 32px;
}

.btn-cta:hover {
    background: var(--rosa-primary-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(244, 114, 182, 0.35);
}

.btn-cta-large {
    padding: 20px 48px;
    font-size: 1.25rem;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-image-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease;
}

.hero-image-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--texto-escuro);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.3;
    max-width: 500px;
}

.phone-frame {
    background: var(--branco);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    max-width: 480px;
    width: 100%;
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: var(--branco);
    border-radius: 0 0 16px 16px;
    z-index: 1;
}

.hero-app-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--texto-medio);
    font-size: 0.9375rem;
    font-weight: 500;
}

.feature-item svg {
    color: var(--rosa-primary);
    flex-shrink: 0;
}

/* Dor Section */
.dor-section {
    padding: 80px 20px;
    background: #fafbfc;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--texto-escuro);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

.dor-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 32px;
}

.dor-list li {
    padding: 20px 0;
    font-size: 1.25rem;
    color: var(--texto-escuro);
    font-weight: 500;
    position: relative;
    padding-left: 40px;
}

.dor-list li:before {
    content: "❌";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.dor-frase-impacto {
    text-align: center;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--texto-escuro);
    max-width: 600px;
    margin: 32px auto 24px;
    padding: 20px;
    background: rgba(254, 242, 242, 0.3);
    border-radius: 12px;
}

.dor-final {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--texto-escuro);
    max-width: 600px;
    margin: 32px auto 0;
}

.dor-prejuizo-frase {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--texto-escuro);
    max-width: 600px;
    margin: 24px auto 0;
    opacity: 0.85;
    line-height: 1.6;
}

.dor-ganhos-box {
    max-width: 800px;
    margin: 32px auto 0;
    padding: 32px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dor-ganhos-emoji {
    font-size: 4rem;
    line-height: 1;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.dor-ganhos-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dor-ganhos-frase-principal {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--branco);
    margin: 0;
    line-height: 1.3;
}

.dor-ganhos-frase-secundaria {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
}

/* Transformação Section */
.transformacao-section {
    padding: 80px 20px;
    background: var(--branco);
}

.comparacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparacao-col {
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--borda);
}

.comparacao-col.antes {
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.6) 0%, rgba(254, 242, 242, 0.3) 100%);
    border-left: 4px solid #EF4444;
}

.comparacao-col.depois {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.6) 0%, rgba(236, 253, 245, 0.3) 100%);
    border-left: 4px solid #10B981;
}

.comparacao-col h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--texto-escuro);
}

.comparacao-col ul {
    list-style: none;
}

.comparacao-col li {
    padding: 16px 0;
    font-size: 1.125rem;
    position: relative;
    padding-left: 40px;
    line-height: 1.6;
}

.comparacao-col.antes li {
    color: var(--texto-escuro);
    opacity: 0.9;
}

.comparacao-col.depois li {
    color: var(--texto-escuro);
    font-weight: 500;
}

.comparacao-col.antes li:before {
    content: "❌";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.comparacao-col.depois li:before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.transformacao-frase {
    text-align: center;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--texto-escuro);
    margin-top: 48px;
    line-height: 1.4;
}

/* Benefícios Section */
.beneficios-section {
    padding: 80px 20px;
    background: #fafbfc;
}

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

.beneficio-item {
    background: var(--fundo);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--borda);
    transition: all 0.2s ease;
}

.beneficio-item:hover {
    box-shadow: var(--sombra-md);
    transform: translateY(-4px);
}

.beneficio-icon {
    width: 48px;
    height: 48px;
    background: var(--rosa-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--rosa-primary);
}

.beneficio-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--texto-escuro);
    margin-bottom: 12px;
}

.beneficio-item p {
    font-size: 0.9375rem;
    color: var(--texto-medio);
    line-height: 1.6;
}

.beneficios-frase-ganhos {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--texto-escuro);
    margin-top: 48px;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.ganhos-box {
    max-width: 800px;
    margin: 48px auto 0;
    padding: 32px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.ganhos-emoji {
    font-size: 4rem;
    line-height: 1;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

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

.ganhos-content {
    flex: 1;
}

.ganhos-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 12px;
    line-height: 1.3;
}

.ganhos-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.ganhos-box-oferta {
    max-width: 500px;
    margin: 24px auto;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(5, 150, 105, 0.95) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ganhos-emoji-oferta {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.ganhos-text-oferta {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--branco);
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Incluso Section */
.incluso-section {
    padding: 80px 20px;
    background: var(--fundo);
}

.incluso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.incluso-item {
    background: var(--branco);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--borda);
    text-align: center;
    font-weight: 500;
    color: var(--texto-escuro);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Depoimentos Section */
.depoimentos-section {
    padding: 80px 20px;
    background: #f9fafb;
}

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

.depoimento-card {
    background: var(--branco);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--borda);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.depoimento-stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.depoimento-texto {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--texto-escuro);
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-autor-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.depoimento-foto {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--borda);
    flex-shrink: 0;
}

.depoimento-autor {
    font-size: 0.9375rem;
    color: var(--texto-medio);
    font-weight: 500;
    margin: 0;
}

.prova-social-box {
    max-width: 800px;
    margin: 48px auto 0;
    padding: 32px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.prova-social-emoji {
    font-size: 4rem;
    line-height: 1;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.prova-social-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prova-social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--branco);
    font-weight: 500;
}

.prova-social-item svg {
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    stroke-width: 2.5;
}

/* Bônus Section */
.bonus-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef7ff 0%, #faf5ff 100%);
}

.bonus-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--texto-escuro);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.bonus-subtitle {
    font-size: 1.125rem;
    color: var(--texto-medio);
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 48px;
}

.bonus-card {
    background: var(--branco);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--borda);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--rosa-primary) 0%, var(--rosa-primary-dark) 100%);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.bonus-medal {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.bonus-content {
    flex: 1;
    padding-left: 8px;
}

.bonus-card-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--texto-escuro);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bonus-card-description {
    font-size: 1rem;
    color: var(--texto-medio);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bonus-value {
    font-size: 0.9375rem;
    color: var(--texto-medio);
    font-weight: 500;
}

.bonus-price {
    color: var(--rosa-primary);
    font-weight: 600;
}

.bonus-anchor {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: var(--radius);
    border: 2px solid rgba(244, 114, 182, 0.2);
}

.bonus-anchor-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--texto-escuro);
    margin-bottom: 8px;
}

.bonus-total-striked {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 8px;
}

.bonus-anchor-subtext {
    font-size: 1.125rem;
    color: var(--texto-medio);
    font-weight: 500;
}

/* Oferta Section */
.oferta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--rosa-primary) 0%, var(--rosa-primary-dark) 100%);
    color: var(--branco);
}

.oferta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.oferta-box .section-title {
    color: var(--branco);
    margin-bottom: 20px;
}

.oferta-valor-normal {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.oferta-frase-preco {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 20px;
    font-weight: 500;
}

.oferta-frase-estrategica {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 24px;
    font-weight: 600;
    font-style: italic;
}

.preco-box {
    margin: 24px 0;
}

.preco-antigo {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 8px;
}

.preco-novo {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
}

.oferta-micro-objecao {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.oferta-valor-normal {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.oferta-texto {
    font-size: 1.125rem;
    margin-bottom: 12px;
    opacity: 0.95;
}

.oferta-urgencia {
    font-size: 0.9375rem;
    opacity: 0.85;
    margin-bottom: 24px;
    font-style: italic;
}

.oferta-beneficios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 500px;
    margin: 24px auto;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.oferta-beneficio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    opacity: 0.95;
}

.oferta-beneficio-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.oferta-micro-reforco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.8125rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.oferta-micro-reforco svg {
    flex-shrink: 0;
    color: var(--branco);
}

.oferta-micro-reforco .separador {
    opacity: 0.6;
    margin: 0 4px;
}

.btn-cta-large {
    background: linear-gradient(135deg, var(--rosa-primary) 0%, var(--rosa-primary-dark) 100%);
    animation: pulse-subtle 3s ease-in-out infinite;
}

.btn-cta-large:hover {
    animation: none;
}

@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.oferta-box .btn-cta {
    background: var(--branco);
    color: var(--rosa-primary);
}

.oferta-box .btn-cta:hover {
    background: var(--fundo);
    transform: translateY(-2px);
}

/* Garantia Section */
.garantia-section {
    padding: 80px 20px;
    background: #fafbfc;
}

.garantia-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--fundo);
    padding: 48px 32px;
    border-radius: var(--radius);
    border: 2px solid var(--rosa-primary);
    box-shadow: 0 4px 16px rgba(244, 114, 182, 0.1);
}

.garantia-box svg {
    color: var(--rosa-primary);
    margin-bottom: 24px;
}

.garantia-titulo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--texto-escuro);
    margin-bottom: 16px;
}

.garantia-texto {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--texto-escuro);
    opacity: 0.8;
}

.garantia-box p {
    font-size: 1.125rem;
    color: var(--texto-medio);
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 6px 14px;
        margin-bottom: 20px;
        display: inline-block;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-logo {
        width: 72px;
        height: 72px;
        margin: 0 auto 20px;
    }

    .hero-title {
        font-size: 1.875rem;
        max-width: 100%;
    }

    .hero-authority {
        flex-direction: column;
        gap: 12px;
    }

    .hero-authority-item {
        font-size: 0.8125rem;
        justify-content: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image-headline {
        font-size: 1.25rem;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .phone-frame {
        max-width: 380px;
        margin: 0 auto;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-lucro-frase {
        font-size: 0.9375rem;
        max-width: 100%;
        padding: 0 20px;
    }

    .dor-prejuizo-frase {
        font-size: 1rem;
        padding: 0 20px;
    }

    .dor-ganhos-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        margin-top: 24px;
    }

    .dor-ganhos-emoji {
        font-size: 3rem;
    }

    .dor-ganhos-content {
        width: 100%;
    }

    .dor-ganhos-frase-principal {
        font-size: 1.25rem;
    }

    .dor-ganhos-frase-secundaria {
        font-size: 1rem;
    }

    .oferta-frase-estrategica {
        font-size: 1rem;
        padding: 0 20px;
    }

    .oferta-micro-objecao {
        font-size: 0.875rem;
        padding: 0 20px;
    }

    .beneficios-frase-ganhos {
        font-size: 1.125rem;
        margin-top: 40px;
        padding: 0 20px;
    }

    .ganhos-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        margin-top: 32px;
    }

    .ganhos-emoji {
        font-size: 3rem;
    }

    .ganhos-title {
        font-size: 1.25rem;
    }

    .ganhos-text {
        font-size: 1rem;
    }

    .ganhos-box-oferta {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }

    .ganhos-emoji-oferta {
        font-size: 2rem;
    }

    .ganhos-text-oferta {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .comparacao-grid {
        grid-template-columns: 1fr;
    }

    .transformacao-frase {
        font-size: 1.125rem;
        margin-top: 32px;
        padding: 0 20px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .incluso-grid {
        grid-template-columns: 1fr;
    }

    .preco-novo {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 16px;
    }

    .dor-frase-impacto {
        font-size: 1.125rem;
        padding: 16px;
        margin: 24px auto 20px;
    }

    .dor-final {
        font-size: 1.125rem;
        margin: 24px auto 0;
    }

    .dor-list li {
        font-size: 1.125rem;
        padding: 18px 0;
        padding-left: 36px;
    }

    .dor-list li:before {
        font-size: 1.375rem;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .depoimento-card {
        padding: 32px 24px;
    }

    .depoimento-stars {
        font-size: 1.25rem;
    }

    .depoimento-autor-wrapper {
        justify-content: center;
    }

    .depoimento-foto {
        width: 48px;
        height: 48px;
    }

    .comparacao-col {
        padding: 36px 28px;
    }

    .comparacao-col h3 {
        font-size: 1.5rem;
    }

    .comparacao-col li {
        font-size: 1rem;
        padding-left: 36px;
    }

    .oferta-frase-preco {
        font-size: 1rem;
    }

    .oferta-beneficios {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
    }

    .oferta-micro-reforco {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 6px;
    }

    .oferta-micro-reforco .separador {
        display: none;
    }

    .prova-social-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        margin-top: 32px;
    }

    .prova-social-emoji {
        font-size: 3rem;
    }

    .prova-social-content {
        width: 100%;
    }

    .prova-social-item {
        font-size: 0.9375rem;
        justify-content: center;
        text-align: left;
    }

    .compra-segura {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .compra-segura div {
        text-align: center;
    }

    .garantia-titulo {
        font-size: 1.25rem;
    }

    .bonus-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .bonus-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 32px;
    }

    .bonus-grid {
        gap: 20px;
        margin-bottom: 32px;
    }

    .bonus-card {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .bonus-card::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }

    .bonus-content {
        padding-left: 0;
    }

    .bonus-medal {
        font-size: 2.5rem;
        text-align: center;
    }

    .bonus-card-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .bonus-card-description {
        font-size: 0.9375rem;
        text-align: center;
    }

    .bonus-value {
        text-align: center;
        font-size: 0.875rem;
    }

    .bonus-anchor {
        padding: 24px 20px;
    }

    .bonus-anchor-text {
        font-size: 1.25rem;
    }

    .bonus-anchor-subtext {
        font-size: 1rem;
    }

    /* Vídeo no mobile - mostrar dentro do hero */
    .hero-video-mobile {
        display: block !important;
        width: 100%;
        margin: 24px 0;
    }

    /* Esconder seção de vídeo separada no mobile */
    .video-section-desktop {
        display: none !important;
    }
}

/* Desktop - esconder vídeo dentro do hero e mostrar seção separada */
@media (min-width: 769px) {
    .hero-video-mobile {
        display: none !important;
    }

    /* No desktop, mostrar a seção com a imagem do telefone */
    .video-section-desktop {
        display: block !important;
    }

    /* Mostrar vídeo no lugar da imagem do telefone no desktop */
    .hero-video-desktop {
        display: block !important;
        width: 100%;
        margin-bottom: 20px;
    }

    /* Esconder a imagem do telefone no hero-image-wrapper no desktop */
    .hero-image-wrapper .phone-frame {
        display: none !important;
    }

    /* Mostrar a imagem do telefone na seção separada no desktop */
    .video-section-desktop .phone-frame {
        display: block !important;
    }
}
