/* ============================================
   LANDING PAGE COMPARATIVA - CONTROLENAMÃO
   Design moderno com foco em conversão
   Responsividade 100% para todos os dispositivos
   ============================================ */

/* === VARIABLES === */
:root {
    /* Colors */
    --primary-orange: #ff9d01;
    --primary-green: #ff9d01;
    --success-green: #ff9d01;
    --danger-red: #ef4444;
    --dark-blue: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-orange: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    --gradient-green: linear-gradient(135deg, #ff9d01 0%, #ffb347 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.16);
    --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.24);
    
    /* Typography */
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
}

/* === BUTTONS === */
.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255, 157, 1, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 157, 1, 0.35);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* === HERO SECTION IDENTIDADE CNM === */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --primary-orange: #ff9d01;
    --dark-gray: #3a434d;
    --bg-creme: #f6eael;
    --danger-red: #bc0000;
}

.hero {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

.hero-bg-accent {
    position: absolute;
    top: -5%;
    right: -5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 157, 1, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 0.8;
}

.hero-title {
    font-family: 'Days One', sans-serif;
    font-size: 50px;
    color: var(--dark-gray);
    line-height: 1.1;
    margin-bottom: 24px;
    text-align: left;
}

.hero-title .highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-action {
    display: flex;
    justify-content: flex-start;
}

.btn-whatsapp {
    background-color: #25d366; 
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    background-color: #20bd5a;
}

.btn-whatsapp i {
    font-size: 22px;
}

/* === TABELA GRID ESTRUTURADA === */
.hero-table-container {
    flex: 1.2;
}

.comp-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(58, 67, 77, 0.15);
    border: 1px solid var(--bg-creme);
    overflow: hidden;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* Cabeçalho Compacto e Alinhado */
.comp-table thead th {
    background-color: var(--dark-gray);
    color: #ffffff;
    padding: 15px 10px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.header-content-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-img-mini {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.header-img-mini.blurred {
    filter: blur(2px) grayscale(1);
    opacity: 0.5;
}

/* Linhas e Células */
.comp-table tbody td {
    padding: 15px 20px;
    border: 1px solid #edf2f7;
    font-size: 13.5px;
    line-height: 1.3;
    vertical-align: middle;
}

.text-center { 
    text-align: center; 
}

.cell-label {
    font-weight: 700;
    color: var(--dark-gray);
    background-color: #fafafa;
    width: 25%;
}

.cell-others {
    color: var(--dark-gray);
    width: 35%;
}

.cell-cnm {
    color: var(--dark-gray);
    font-weight: 500;
    width: 40%;
    background-color: rgba(255, 157, 1, 0.02);
}

/* Ícones de Status */
.icon-x {
    color: var(--danger-red);
    font-weight: 900;
    margin-right: 8px;
}

.icon-check {
    color: var(--primary-orange);
    font-size: 16px;
    font-weight: 900;
    margin-right: 8px;
}

/* Rodapé */
.comp-footer {
    padding: 20px;
    text-align: center;
    background-color: var(--bg-creme);
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 16px;
    border-top: 1px solid var(--primary-orange);
}

.comp-footer .price {
    color: var(--primary-orange);
    font-size: 22px;
    margin-left: 8px;
}

/* === SEÇÃO DIFERENCIAIS === */
.diferenciais-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Days One', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #3a434d;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.marker-highlight {
    background: linear-gradient(180deg, transparent 65%, rgba(255, 157, 1, 0.25) 65%);
    padding: 0 10px;
    display: inline-block;
}

.section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
}

.focus-phrase {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #3a434d;
    line-height: 1.3;
}

.highlight-brand {
    color: #ff9d01;
    background: rgba(255, 157, 1, 0.05);
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

/* Centralização do Card e Conteúdo */
.diferencial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.diferencial-card:hover {
    border-color: #ff9d01;
    box-shadow: 0 30px 60px rgba(58, 67, 77, 0.1);
    transform: translateY(-10px);
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff9d01, #ffb84d);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Estilo para as imagens customizadas */
.card-img-custom {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.card-title {
    font-family: 'Days One', sans-serif;
    font-size: 1.5rem;
    color: #3a434d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.card-list li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem; /* REDUZIDO de 1.75rem para 1.5rem */
    text-align: left;
}

.card-list li:before {
    content: "✓";
    position: absolute;
    left: 0; /* MANTIDO em 0 para ficar mais próximo */
    color: #ff9d01;
    font-weight: 900;
    font-size: 1rem; /* REDUZIDO de 1.1rem para 1rem */
}

/* === PAIN/GAIN SECTION === */
.pain-gain-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ps-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.ps-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ps-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    align-items: center;
}

.ps-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.pain-side,
.gain-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-side,
.solution-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.tag-success {
    background: rgba(255, 157, 1, 0.1);
    color: #ff9d01;
}

.pain-side h3,
.gain-side h3,
.problem-side h3,
.solution-side h3 {
    font-family: 'Days One', sans-serif;
    font-size: 1.25rem;
    color: #3a434d;
    margin: 0;
}

.pain-side p,
.gain-side p,
.problem-side p,
.solution-side p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.arrow-indicator {
    font-size: 2.5rem;
    color: #ff9d01;
    font-weight: 700;
    text-align: center;
}

/* === DEPOIMENTOS === */
.depoimentos-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.depoimento-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f3f4f6;
}

.depoimento-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.depo-stars {
    color: #ff9d01;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.depo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.depo-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}

.author-img {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
    background-color: #f6eael;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    font-family: 'Days One', sans-serif;
    font-size: 0.95rem;
    color: #3a434d;
}

.author-info span {
    font-size: 0.85rem;
    color: #64748b;
}

/* === NÚMEROS === */
.numeros-section {
    padding: 3rem 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.numero-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.numero-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.numero-label {
    font-size: 1rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* === CTA FINAL CNM === */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdf8f2 0%, #ffffff 100%);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: 'Days One', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #3a434d;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-title .highlight {
    color: #ff9d01;
}

.cta-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.cta-form {
    margin-bottom: 2.5rem;
}

.form-inline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 550px;
    margin: 0 auto 1.5rem;
}

.form-input {
    padding: 1.25rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #ff9d01;
    box-shadow: 0 0 0 4px rgba(255, 157, 1, 0.1);
}

.btn-submit {
    background: #ff9d01;
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(255, 157, 1, 0.25);
}

.btn-submit:hover {
    transform: translateY(-3px);
    background: #e68e00;
    box-shadow: 0 15px 30px rgba(255, 157, 1, 0.35);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    border-top: 1px solid #f3f4f6;
    padding-top: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: #3a434d;
    font-size: 0.95rem;
}

.badge-icon {
    font-size: 1.2rem;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* === NOTEBOOK (769px - 1024px) === */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4.5rem 0;
    }

    .container {
        max-width: 960px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-wrapper {
        gap: 40px;
    }

    .section-title {
        font-size: 3rem;
    }

    .focus-phrase {
        font-size: 1.5rem;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .comp-table tbody td {
        padding: 12px 15px;
        font-size: 12.5px;
    }

    .cell-label {
        width: 28%;
    }

    .cell-others {
        width: 36%;
    }

    .cell-cnm {
        width: 36%;
    }

    .card-list li {
        padding-left: 1.4rem;
    }
}

/* === TABLET (769px - 992px) === */
@media (max-width: 992px) {
    :root {
        --section-padding: 4rem 0;
    }

    body {
        padding-top: 70px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        flex: 1;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-action {
        justify-content: center;
    }

    .hero-table-container {
        flex: 1;
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
    }

    .hero-bg-accent {
        width: 500px;
        height: 500px;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .section-subtitle {
        font-size: 1.15rem;
    }

    .focus-phrase {
        font-size: 1.4rem;
    }

    .diferenciais-section,
    .pain-gain-section,
    .depoimentos-section,
    .cta-final {
        padding: 80px 0;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* Pain/Gain ajustado para mobile - mantém ordem vertical */
    .ps-card,
    .ps-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.5rem;
    }

    /* Ordem correta: Pain -> Arrow -> Gain */
    .pain-side {
        order: 1;
    }

    .arrow-indicator {
        order: 2;
        transform: rotate(90deg);
        font-size: 2rem;
        margin: 0.5rem auto;
        text-align: center;
    }

    .gain-side {
        order: 3;
    }

    .depoimentos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .cta-title {
        font-size: 3rem;
    }

    .comp-table thead th {
        font-size: 13px;
        padding: 12px 8px;
    }

    .comp-table tbody td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .comp-footer {
        padding: 18px;
        font-size: 15px;
    }

    .comp-footer .price {
        font-size: 20px;
    }

    .card-list li {
        padding-left: 1.3rem;
    }
}

/* === MOBILE LARGE (481px - 768px) === */
@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem 0;
        --container-padding: 0 1.25rem;
    }

    body {
        padding-top: 60px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .btn-whatsapp {
        padding: 16px 32px;
        font-size: 16px;
    }

    .btn-whatsapp i {
        font-size: 20px;
    }

    .hero-bg-accent {
        width: 400px;
        height: 400px;
    }

    /* TABELA COMPARATIVA MOBILE - MANTÉM 3 COLUNAS */
    .comp-card {
        border-radius: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comp-table {
        min-width: 100%;
        width: 100%;
    }

    .comp-table thead th {
        font-size: 11px;
        padding: 10px 6px;
        white-space: nowrap;
    }

    .header-content-inner {
        flex-direction: column;
        gap: 4px;
    }

    .header-img-mini {
        height: 16px;
    }

    .comp-table tbody td {
        padding: 10px 8px;
        font-size: 11px;
        line-height: 1.4;
    }

    .cell-label {
        width: 30%;
        font-size: 10px;
    }

    .cell-others {
        width: 35%;
    }

    .cell-cnm {
        width: 35%;
    }

    .icon-x,
    .icon-check {
        margin-right: 4px;
        font-size: 12px;
    }

    .comp-footer {
        padding: 14px;
        font-size: 13px;
    }

    .comp-footer .price {
        font-size: 17px;
        display: inline;
        margin-left: 6px;
    }

    /* Seções */
    .section-header {
        margin-bottom: 3.5rem;
    }

    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .focus-phrase {
        font-size: 1.25rem;
        margin-top: 1rem;
    }

    .diferenciais-section,
    .pain-gain-section,
    .depoimentos-section,
    .cta-final {
        padding: 60px 0;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diferencial-card {
        padding: 2rem;
    }

    .card-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 1.5rem;
    }

    .card-img-custom {
        width: 32px;
        height: 32px;
    }

    .card-title {
        font-size: 1.35rem;
    }

    .card-list li {
        padding-left: 1.3rem;
        font-size: 0.9rem;
    }

    .card-list li:before {
        font-size: 0.95rem;
    }

    .ps-grid {
        gap: 2rem;
    }

    .ps-card,
    .ps-item {
        padding: 2rem;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    /* Ordem vertical mobile: Pain -> Arrow -> Gain */
    .pain-side {
        order: 1;
    }

    .arrow-indicator {
        order: 2;
        font-size: 1.75rem;
        transform: rotate(90deg);
        margin: 0.75rem auto;
        display: block;
        width: 100%;
    }

    .gain-side {
        order: 3;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .depoimento-card {
        padding: 2rem;
    }

    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .numero-value {
        font-size: 2.5rem;
    }

    .numero-label {
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .form-inline {
        max-width: 100%;
    }

    .form-input {
        padding: 1.1rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }

    .trust-badges {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}

/* === MOBILE MEDIUM (376px - 480px) === */
@media (max-width: 480px) {
    :root {
        --section-padding: 3rem 0;
        --container-padding: 0 1rem;
    }

    body {
        padding-top: 60px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .btn-whatsapp {
        padding: 14px 28px;
        font-size: 15px;
        gap: 10px;
    }

    .btn-whatsapp i {
        font-size: 18px;
    }

    .hero-bg-accent {
        width: 300px;
        height: 300px;
    }

    /* Tabela Mobile Small - mantém 3 colunas com scroll */
    .comp-card {
        border-radius: 12px;
    }

    .comp-table thead th {
        font-size: 10px;
        padding: 8px 4px;
    }

    .header-img-mini {
        height: 14px;
    }

    .comp-table tbody td {
        padding: 8px 6px;
        font-size: 10px;
    }

    .cell-label {
        font-size: 9px;
    }

    .icon-x,
    .icon-check {
        margin-right: 3px;
        font-size: 11px;
    }

    .comp-footer {
        padding: 12px;
        font-size: 12px;
    }

    .comp-footer .price {
        font-size: 16px;
    }

    .section-title {
        font-size: 1.875rem;
        margin-bottom: 1.25rem;
    }

    .marker-highlight {
        padding: 0 6px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .focus-phrase {
        font-size: 1.125rem;
        margin-top: 0.875rem;
    }

    .diferenciais-section,
    .pain-gain-section,
    .depoimentos-section,
    .cta-final {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .diferencial-card {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .card-icon-wrapper {
        width: 52px;
        height: 52px;
        margin-bottom: 1.25rem;
    }

    .card-img-custom {
        width: 28px;
        height: 28px;
    }

    .card-title {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }

    .card-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .card-list li {
        font-size: 0.875rem;
        padding: 0.4rem 0;
        padding-left: 1.25rem;
    }

    .card-list li:before {
        font-size: 0.9rem;
    }

    .ps-card,
    .ps-item {
        padding: 1.75rem;
        border-radius: 16px;
    }

    .status-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .pain-side h3,
    .gain-side h3,
    .problem-side h3,
    .solution-side h3 {
        font-size: 1.125rem;
    }

    .pain-side p,
    .gain-side p,
    .problem-side p,
    .solution-side p {
        font-size: 0.95rem;
    }

    .arrow-indicator {
        font-size: 1.5rem;
    }

    .depoimento-card {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .depo-stars {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .depo-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .depo-author {
        padding-top: 1.25rem;
    }

    .author-img {
        width: 48px;
        height: 48px;
    }

    .author-info strong {
        font-size: 0.9rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }

    .numeros-section {
        padding: 2.5rem 0;
    }

    .numeros-grid {
        gap: 1.75rem;
    }

    .numero-value {
        font-size: 2.25rem;
    }

    .numero-label {
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 2.125rem;
        margin-bottom: 1.25rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .form-inline {
        gap: 1rem;
    }

    .form-input {
        padding: 1rem 1.125rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .btn-submit {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
        border-radius: 10px;
        gap: 0.5rem;
    }

    .form-note {
        font-size: 0.85rem;
    }

    .badge-item {
        font-size: 0.875rem;
    }
}

/* === MOBILE SMALL (até 375px) === */
@media (max-width: 375px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .btn-whatsapp {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .focus-phrase {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.125rem;
    }

    .card-text {
        font-size: 0.875rem;
    }

    .card-list li {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }

    .cta-title {
        font-size: 1.875rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .form-input {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .comp-table tbody td {
        padding: 6px 4px;
        font-size: 9px;
    }

    .diferencial-card,
    .ps-card,
    .ps-item,
    .depoimento-card {
        padding: 1.5rem;
    }
}

/* === ORIENTAÇÃO LANDSCAPE MOBILE === */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .diferenciais-section,
    .pain-gain-section,
    .depoimentos-section,
    .cta-final {
        padding: 40px 0;
    }
}

/* === ULTRA WIDE SCREENS (>1440px) === */
@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 4rem;
    }

    .focus-phrase {
        font-size: 2rem;
    }
}

/* === PRINT STYLES === */
@media print {
    body {
        padding-top: 0;
    }

    .hero-bg-accent {
        display: none;
    }

    .btn-whatsapp,
    .btn-submit,
    .form-inline {
        display: none;
    }

    .comp-card,
    .diferencial-card,
    .ps-card,
    .depoimento-card {
        box-shadow: none;
        border: 1px solid #e5e7eb;
        page-break-inside: avoid;
    }
}

/* -------------------------
   COOKIE BANNER (CNM STYLE)
   ------------------------- */

#cnm-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1140px;
  height: 167px;
  flex-shrink: 0;
  background: #FBFBFB;
  border-radius: 12px;
  padding: 20px 45px;
  display: flex;
  flex-direction: column;
  z-index: 999999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* TÍTULO */
#cnm-cookie-banner h3 {
  width: 1050px;
  height: 17px;
  flex-shrink: 0;
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 auto 10px auto;
}

/* CONTAINER DO CONTEÚDO */
.cnm-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex: 1;
}

/* LEFT SIDE */
.cnm-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* TEXTO */
#cnm-cookie-banner p {
  width: 719px;
  height: 54px;
  color: rgba(0, 0, 0, 0.56);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 auto;
}

#cnm-cookie-banner p a {
  color: #316CF4;
  text-decoration: none;
}

#cnm-cookie-banner p a:hover {
  text-decoration: underline;
}

/* CHECKBOX LIST */
.cnm-cookie-options {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  width: 719px;
}

.cnm-check {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  min-width: fit-content;
}

/* Label Necessários */
.cnm-check.necessary {
  color: rgba(0, 0, 0, 0.40);
}

/* Demais labels */
.cnm-check:not(.necessary) {
  color: rgba(0, 0, 0, 0.56);
}

/* Checkbox personalizado - MÉTODO SIMPLIFICADO */
.cnm-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 17px;
  height: 17px;
  border: 2px solid #EABE6D;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  vertical-align: middle;
}

.cnm-check input[type="checkbox"]:checked {
  background: #EABE6D;
  border-color: #EABE6D;
}

/* Check simples usando border */
.cnm-check input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Checkbox Necessários (disabled) */
.cnm-check.necessary input[type="checkbox"]:disabled {
  cursor: not-allowed;
  border-color: rgba(224, 153, 19, 0.30);
  background: rgba(224, 153, 19, 0.30);
  opacity: 1;
}

.cnm-check.necessary input[type="checkbox"]:disabled::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* BUTTONS */
.cnm-buttons {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
}

.cnm-buttons-top {
  display: flex;
  gap: 14px;
}

.cnm-btn {
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-style: normal;
  border-radius: 8px;
  transition: opacity 0.2s;
}

.cnm-btn:hover {
  opacity: 0.9;
}

/* Recusar tudo */
.cnm-btn.reject-all {
  width: 138px;
  height: 33px;
  background: #D9D9D9B2;
  color: rgba(0, 0, 0, 0.70);
  font-size: 16px;
  font-weight: 400;
}

/* Aceitar tudo */
.cnm-btn.accept-all {
  width: 138px;
  height: 33px;
  background: rgba(224, 153, 19, 0.61);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}

/* Aceitar seleção */
.cnm-btn.accept-selection {
  width: 290px;
  height: 40px;
  background: #0000009C;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

/* MOBILE */
@media (max-width: 1200px) {
  #cnm-cookie-banner {
    position: fixed !important;
    bottom: 20px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 40px);
    max-width: 450px;
    height: auto;
    padding: 16px 18px;
    margin: 0 !important;
  }

  #cnm-cookie-banner h3 {
    width: 100%;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .cnm-content-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .cnm-left {
    width: 100%;
    gap: 8px;
  }

  #cnm-cookie-banner p {
    width: 100%;
    height: auto;
    font-size: 11px;
    line-height: 1.4;
  }

  .cnm-cookie-options {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
  }

  .cnm-check {
    gap: 4px;
    font-size: 10px;
    white-space: nowrap;
  }

  .cnm-check input[type="checkbox"] {
    width: 14px;
    height: 14px;
    border-width: 1.5px;
  }

  /* Ajuste do check no mobile */
  .cnm-check input[type="checkbox"]:checked::before,
  .cnm-check.necessary input[type="checkbox"]:disabled::before {
    left: 3px;
    top: 0px;
    width: 3px;
    height: 7px;
    border-width: 0 1.5px 1.5px 0;
  }

  .cnm-buttons {
    width: 100%;
    align-items: stretch;
    gap: 8px;
  }

  .cnm-buttons-top {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .cnm-btn.reject-all,
  .cnm-btn.accept-all {
    flex: 1;
    height: 36px;
    font-size: 12px;
    border-radius: 6px;
  }

  .cnm-btn.accept-selection {
    width: 100%;
    height: 38px;
    font-size: 12px;
    border-radius: 6px;
  }
}

/* MOBILE PEQUENO */
@media (max-width: 480px) {
  #cnm-cookie-banner {
    position: fixed !important;
    bottom: 15px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 30px);
    padding: 14px 16px;
    margin: 0 !important;
  }

  #cnm-cookie-banner h3 {
    font-size: 13px;
  }

  #cnm-cookie-banner p {
    font-size: 10px;
  }

  .cnm-check {
    font-size: 9px;
  }

  .cnm-btn.reject-all,
  .cnm-btn.accept-all {
    font-size: 11px;
    height: 34px;
  }

  .cnm-btn.accept-selection {
    font-size: 11px;
    height: 36px;
  }
}