/* ========================================
   CERTIFICADO DIGITAL - OTIMIZOU
   Landing Page Styles
   ======================================== */

/* --- VARIABLES --- */
:root {
    --primary: #053977;
    --primary-dark: #032a5a;
    --primary-light: #0a4d9e;
    --accent: #00F095;
    --accent-dark: #00c878;
    --accent-light: #33f5af;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- FOCUS STATES (Acessibilidade) --- */
a:focus-visible, button:focus-visible, .btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}
.faq__question:focus-visible { outline-offset: -2px; }

ul, ol {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--accent {
    background: var(--accent);
    color: var(--primary-dark);
}
.btn--accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
}
.btn--white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.header--scrolled {
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header__logo-img {
    height: 56px;
    width: auto;
}

.footer__logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.header__nav {
    display: flex;
    gap: 32px;
}

.header__nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    position: relative;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.header__nav a:hover {
    color: var(--primary);
}

.header__nav a:hover::after {
    width: 100%;
}

.header__cta {
    padding: 10px 20px;
    font-size: 13px;
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- HERO --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 140px 0 120px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,240,149,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,240,149,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-block;
    background: rgba(0,240,149,0.15);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero__content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero__content h1 strong {
    color: var(--accent);
}

.hero__content p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 520px;
}

.hero__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
}

.hero__price-label {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__price-value {
    font-size: 52px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.hero__price-cents {
    font-size: 28px;
    font-weight: 600;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    color: var(--white);
}

.hero__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    background: rgba(0,240,149,0.15);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--accent);
}

.hero__card-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.hero__card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero__card-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* --- URGÊNCIA / OFERTA --- */
.urgencia {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    padding: 16px 0;
    position: relative;
    z-index: 3;
}

.urgencia__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.urgencia__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    animation: urgencia-pulse 2s ease-in-out infinite;
}

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

.urgencia__content {
    color: var(--white);
    font-size: 14px;
    text-align: center;
}

.urgencia__content strong {
    font-weight: 700;
    font-size: 15px;
    display: block;
}

.urgencia__btn {
    flex-shrink: 0;
}

/* --- SECTIONS COMMON --- */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 560px;
    margin-bottom: 48px;
}

/* --- CERTIFICADOS --- */
.certificados {
    padding: 80px 0 60px;
    background: var(--white);
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin-bottom: 40px;
}

.card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card--featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.card__header {
    margin-bottom: 24px;
}

.card__type {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card__name {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 4px 0;
}

.card__method {
    font-size: 14px;
    color: var(--gray-600);
}

.card__price {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}

.card__currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 8px;
}

.card__value {
    font-size: 52px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.card__cents {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 8px;
}

.card__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
}

.card__features li svg {
    flex-shrink: 0;
    color: var(--accent-dark);
}

.card__btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
}

/* AVISO */
.aviso {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

.aviso svg {
    flex-shrink: 0;
    color: #F9A825;
    margin-top: 2px;
}

/* --- COMPARATIVO DE PREÇOS --- */
.preco-comparativo {
    padding: 80px 0;
    background: var(--gray-50);
}

.preco-comparativo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
}

.preco-comparativo__item {
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: center;
    position: relative;
}

.preco-comparativo__item--other {
    background: var(--white);
    border: 2px solid var(--gray-200);
}

.preco-comparativo__item--ours {
    background: var(--white);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.preco-comparativo__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.preco-comparativo__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.preco-comparativo__valor {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.preco-comparativo__valor--old {
    color: var(--gray-400);
    text-decoration: line-through;
}

.preco-comparativo__features {
    text-align: left;
    margin-bottom: 24px;
}

.preco-comparativo__item--other .preco-comparativo__features li {
    font-size: 14px;
    color: var(--gray-600);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    padding-left: 24px;
}

.preco-comparativo__item--other .preco-comparativo__features li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.preco-comparativo__item--ours .preco-comparativo__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.preco-comparativo__item--ours .preco-comparativo__features li svg {
    flex-shrink: 0;
    color: var(--accent-dark);
}

.preco-comparativo__btn {
    width: 100%;
    justify-content: center;
}

/* --- BENEFÍCIOS --- */
.beneficios {
    padding: 80px 0;
    background: var(--white);
}

.beneficios__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.beneficio {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.beneficio:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}

.beneficio__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--white);
}

.beneficio h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.beneficio p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- COMO FUNCIONA --- */
.como-funciona {
    padding: 80px 0;
    background: var(--gray-50);
}

.steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 16px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
}

.step h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.step__connector {
    width: 60px;
    height: 2px;
    background: var(--gray-300);
    margin-top: 28px;
    flex-shrink: 0;
}

/* --- DEPOIMENTOS --- */
.depoimentos {
    padding: 80px 0;
    background: var(--white);
}

.depoimentos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.depoimento {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.depoimento:hover {
    box-shadow: var(--shadow-md);
}

.depoimento__stars {
    display: flex;
    gap: 2px;
    color: #F9A825;
    margin-bottom: 16px;
}

.depoimento__text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.depoimento__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.depoimento__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
}

.depoimento__author strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
}

.depoimento__author span {
    font-size: 13px;
    color: var(--gray-600);
}

/* --- FAQ --- */
.faq {
    padding: 80px 0;
    background: var(--gray-50);
}

.faq__list {
    max-width: 720px;
}

.faq__item {
    border-bottom: 1px solid var(--gray-200);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-800);
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}

.faq__question:hover {
    color: var(--primary);
}

.faq__question svg {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--gray-400);
}

.faq__item.active .faq__question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq__item.active .faq__question {
    color: var(--primary);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq__answer p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq__answer ul,
.faq__answer ol {
    padding-left: 20px;
    margin-bottom: 8px;
}

.faq__answer ul {
    list-style: disc;
}

.faq__answer ol {
    list-style: decimal;
}

.faq__answer li {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* --- CTA FINAL --- */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,240,149,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-final__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
}

.cta-final__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- FOOTER --- */
.footer {
    background: var(--gray-900);
    padding-top: 60px;
    color: var(--gray-400);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand .logo-text {
    color: var(--white);
    margin-bottom: 12px;
    display: inline-block;
}

.footer__brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
}

.footer h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer__links a,
.footer__contact a {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
    margin-bottom: 10px;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--accent);
}

.footer__bottom {
    padding: 20px 0;
}

.footer__bottom p {
    font-size: 13px;
    color: var(--gray-600);
    text-align: center;
}

/* --- OPEN CHAT BUTTONS --- */
button.open-chat {
    cursor: pointer;
}

/* --- FLOATING CTA MOBILE --- */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    border-top: 1px solid var(--gray-200);
}

.floating-cta__btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

    .beneficios__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depoimentos__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .step__connector {
        display: none;
    }

    .step {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
    }

    .header__nav.active {
        display: flex;
    }

    .header__cta {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .header__hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .header__hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .header__hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 120px 0 100px;
    }

    .hero__content h1 {
        font-size: 30px;
    }

    .hero__content p {
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

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

    .step {
        flex: 0 0 100%;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-final h2 {
        font-size: 26px;
    }

    .cta-final__buttons {
        flex-direction: column;
        align-items: center;
    }

    /* URGÊNCIA */
    .urgencia__inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* COMPARATIVO DE PREÇOS */
    .preco-comparativo__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* FLOATING CTA */
    .floating-cta { display: block; }
    .footer { padding-bottom: 76px; }
    #chatmentor-btn { bottom: 76px !important; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__content h1 {
        font-size: 26px;
    }

    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .card {
        padding: 32px 24px;
    }

    .card__value {
        font-size: 42px;
    }
}
