:root {
    --primary-color: #00AEEF;
    --secondary-color: #FFC21C;
    --azul-escuro: color-mix(in srgb, var(--primary-color) 38%, #020617 62%);
    --azul-claro: var(--primary-color);
    --amarelo: var(--secondary-color);
    --laranja: var(--secondary-color);
    --laranja-escuro: color-mix(in srgb, var(--secondary-color) 78%, #0f172a 22%);
    --cinza-claro: #f3f5f9;
    --texto-escuro: #0f172a;
    --texto-claro: #f8fafc;
    --branco: #ffffff;
    --hero-form-max: 960px;
    --cookie-bar-height: 0px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--texto-escuro);
    background: var(--cinza-claro);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== FIX: remover overflow horizontal no mobile (sem afetar desktop) ===== */
html, body {
    width: 100%;
    overflow-x: clip; /* não cria scroll horizontal por vazamento visual (transform/blur) */
}

/* fallback para browsers que não suportam clip */
@supports not (overflow-x: clip) {
    html, body { overflow-x: hidden; }
}

.config-status {
    margin: 78px auto 12px auto;
    max-width: 1080px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    font-size: 0.95rem;
    display: none;
}

.config-status:not([hidden]) {
    display: block;
}

.config-status--error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecdd3;
}

.config-status--info {
    background: #eef2ff;
    color: #1e1b4b;
    border-color: #e0e7ff;
}

html {
    scroll-behavior: smooth;
}

.flash-splash {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    overflow: hidden;
    z-index: 1200;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    background: radial-gradient(circle at 50% 50%, #2b6fff 0%, #020617 45%, #000 100%);
    animation: splash-pulse 5s ease-in-out;
    will-change: transform, filter, opacity;
}

.flash-splash::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0.35;
    pointer-events: none;
    animation: glow-pulse 2.4s ease-in-out infinite;
}

.flash-splash--hide {
    opacity: 0;
    visibility: hidden;
}

.flash-splash__glow,
.flash-splash__lines {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    width: 100%;
    overflow: hidden;
}

.flash-splash__glow {
    background: radial-gradient(circle at 50% 50%, rgba(0, 174, 239, 0.35) 0%, rgba(0, 74, 128, 0.08) 55%, rgba(0, 0, 0, 0) 75%);
    filter: blur(22px);
    animation: glow-pulse 2.4s ease-in-out infinite;
}

.flash-splash__lines {
    background: repeating-linear-gradient(
        115deg,
        rgba(255, 255, 255, 0.08) 0px,
        rgba(255, 255, 255, 0.08) 14px,
        rgba(0, 174, 239, 0.14) 26px,
        rgba(0, 174, 239, 0.02) 42px
    );
    mix-blend-mode: screen;
    animation: move-lines 4s linear infinite;
}

.flash-splash__content {
    position: relative;
    text-align: center;
    color: var(--texto-claro);
    z-index: 2;
    padding: 32px 24px;
    border-radius: 18px;
    backdrop-filter: none;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    animation: reveal-content 0.9s ease-out forwards;
}

.flash-logo {
    position: relative;
    width: min(240px, 40vw);
    margin: 0 auto 12px auto;
    filter: drop-shadow(0 12px 28px rgba(0, 174, 239, 0.35));
    animation: float-pulse 2.6s ease-in-out infinite;
}

.flash-tagline {
    position: relative;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fade-in-up 1s ease-out forwards;
    animation-delay: 0.45s;
}

@keyframes splash-pulse {
    0% { transform: scale(1); filter: brightness(1); }
    15% { transform: scale(1.015); filter: brightness(1.15); }
    30% { transform: scale(0.995); filter: brightness(1.05); }
    45% { transform: scale(1.02); filter: brightness(1.18); }
    60% { transform: scale(1); filter: brightness(1.08); }
    75% { transform: scale(1.012); filter: brightness(1.12); }
    100% { transform: scale(1); filter: brightness(1); }
}

@keyframes glow-pulse {
    0% { opacity: 0.15; filter: blur(24px); }
    50% { opacity: 0.55; filter: blur(18px); }
    100% { opacity: 0.15; filter: blur(24px); }
}

@keyframes move-lines {
    0% { transform: translateX(0); }
    100% { transform: translateX(-120px); }
}

@keyframes float-pulse {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-content {
    0% { opacity: 0; transform: translateY(8px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile: evita que o scale do splash estoure a viewport */
@media (max-width: 768px) {
    @keyframes splash-pulse {
        0% { transform: scale(1); filter: brightness(1); }
        15% { transform: scale(1.004); filter: brightness(1.15); }
        30% { transform: scale(0.998); filter: brightness(1.05); }
        45% { transform: scale(1.005); filter: brightness(1.18); }
        60% { transform: scale(1); filter: brightness(1.08); }
        75% { transform: scale(1.004); filter: brightness(1.12); }
        100% { transform: scale(1); filter: brightness(1); }
    }
}

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

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

.titulo-icone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.titulo-icone i {
    font-size: 1.1em;
    color: currentColor;
}

.topo {
    position: fixed;
    top: var(--cookie-bar-height, 0);
    left: 0;
    width: 100%;
    background: color-mix(in srgb, var(--primary-color) 92%, #020617 8%);
    color: var(--texto-claro);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.brand-link:hover,
.brand-link:focus-visible {
    text-decoration: none;
}

.logo {
    height: 42px;
    width: auto;
}

.brand {
    font-size: 1rem;
}

.menu {
    position: relative;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--branco);
}

.menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu a {
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.menu a i {
    padding-right: 10px;
}

.menu a:hover,
.menu a:focus {
    background: rgba(255, 255, 255, 0.12);
    color: var(--branco);
}

.secao {
    padding: 140px 24px 120px;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--azul-claro), var(--laranja));
    color: var(--texto-claro);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: min(var(--hero-form-max), 100%);
    align-items: stretch;
    text-align: left;
    margin: 0 auto;
}

.hero-textos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.hero-titulo {
    align-items: center;
}

.hero-logo {
    height: clamp(120px, 16vw, 180px);
    margin-bottom: 8px;
    align-self: center;
}

.hero h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 12px;
}

.hero .subtitulo {
    font-size: 1.05rem;
    max-width: 640px;
}

.hero-helper {
    font-size: 0.95rem;
    opacity: 0.92;
    margin-top: -8px;
    align-self: stretch;
    text-align: left;
    width: 100%;
}

.form-locucao {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    backdrop-filter: blur(10px);
    width: 100%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 18px 48px rgba(2, 6, 23, 0.35);
    position: relative;
    z-index: 1;
}

.form-locucao label {
    font-weight: 600;
    text-align: left;
}

.input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-locucao textarea,
.form-locucao select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
    color: var(--texto-escuro);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-locucao textarea {
    padding-bottom: 52px;
}

.form-locucao textarea:focus,
.form-locucao select:focus {
    outline: none;
    border-color: var(--amarelo);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 32%, transparent);
}

.btn-primario {
    background: var(--amarelo);
    color: var(--texto-escuro);
    border: none;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primario:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: color-mix(in srgb, var(--primary-color) 88%, white 12%);
}

.test-counter {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.3);
    color: var(--texto-claro);
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-primario:active {
    transform: translateY(0);
}

.btn-buy {
    width: 100%;
    height: 64px;
    padding: 0;
    border-radius: 16px;
    box-sizing: border-box;
    border: none;
    background: var(--amarelo);
    color: var(--texto-escuro);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.1;
    transition: transform 0.2s ease, box-shadow 0.3s ease, filter 0.2s ease;
}

.btn-buy:hover {
    transform: scale(1.02);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    filter: brightness(1.05);
}

.btn-buy:active {
    transform: scale(1);
}

.btn-buy:disabled,
.btn-buy[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.6;
    filter: grayscale(0.2);
    box-shadow: none;
    transform: none;
}

.mensagem {
    min-height: 22px;
    font-weight: 600;
}

.test-form-wrapper {
    width: min(var(--hero-form-max), 100%);
    margin: 0 auto;
    background: radial-gradient(circle at top left, color-mix(in srgb, var(--secondary-color) 38%, transparent), color-mix(in srgb, #0f172a 92%, var(--secondary-color) 8%));
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.6);
    padding: 28px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    isolation: isolate;
    animation: pulse-glow 3.5s ease-in-out infinite;
}

.test-form-wrapper::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--secondary-color) 55%, transparent), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.test-form-title-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
    font-size: 1.05rem;
    color: var(--texto-claro);
}

.test-form-title-icon i {
    color: color-mix(in srgb, var(--secondary-color) 78%, white 22%);
    filter: drop-shadow(0 0 10px color-mix(in srgb, var(--secondary-color) 45%, transparent));
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 12px rgba(56, 189, 248, 0.15), 0 18px 60px rgba(15, 23, 42, 0.6); }
    50% { box-shadow: 0 0 26px rgba(56, 189, 248, 0.35), 0 22px 70px rgba(15, 23, 42, 0.65); }
    100% { box-shadow: 0 0 12px rgba(56, 189, 248, 0.15), 0 18px 60px rgba(15, 23, 42, 0.6); }
}

.audio-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 12px;
    color: var(--texto-escuro);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quem-somos {
    background: var(--azul-escuro);
    color: var(--texto-claro);
}

.container {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.quem-somos .container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.quem-somos h2,
.depoimentos h2,
.footer-grid h3 {
    margin-bottom: 16px;
}

.quem-somos ul {
    list-style: disc;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.planos-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: nowrap;          /* lado a lado em telas grandes */
    width: 100%;
    margin-top: 18px;
}

.planos-container.tem-principal {
    flex-wrap: wrap;
}

.planos-container.principal-unico {
    justify-content: center;
}

.planos-status {
    color: var(--texto-claro);
    opacity: 0.85;
    text-align: center;
    width: 100%;
}

.dynamic-sections-status {
    color: var(--texto-claro);
    opacity: 0.85;
    text-align: center;
    width: 100%;
    margin: 24px auto;
}

.plano-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    width: min(320px, 92vw);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* largura fixa em telas grandes, para ficarem lado a lado */
.planos-container .plano-card {
    flex: 0 0 320px;
}

.plano-card::before {
    content: "";
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 180, 255, 0.15), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.plano-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

.plano-card:hover::before {
    opacity: 1;
}

.plano-card.plano-principal {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(0, 180, 255, 0.3), 0 18px 48px rgba(0, 0, 0, 0.22);
    border: 2px solid rgba(0, 180, 255, 0.5);
    z-index: 2;
    background: linear-gradient(145deg, rgba(0, 174, 239, 0.1), rgba(255, 255, 255, 0.08));
}

@media (max-width: 1024px) {
    .plano-card.plano-principal {
        transform: none;
    }
}

.plano-card.plano-principal::before {
    background: radial-gradient(circle at 30% 20%, rgba(0, 174, 239, 0.2), transparent 60%);
}

.plano-card.plano-principal .plano-preco,
.plano-card.plano-principal .plano-preco-label,
.plano-card.plano-principal .plano-promocao__valor {
    color: var(--plano-cor, var(--primary-color));
}

.plano-card .plano-selo {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--plano-cor, var(--amarelo)), rgba(255, 255, 255, 0.15));
    color: #0d0d0d;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.plano-card .plano-selo i {
    color: #0d0d0d;
}

/* responsivo: em telas menores deixa quebrar linha */
@media (max-width: 1000px) {
    .planos-container {
        flex-wrap: wrap;
    }

    .planos-container .plano-card {
        flex: 1 1 300px;
        max-width: 360px;
        min-width: 0;
    }
}

.plano-card .plano-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.plano-card h3 {
    font-size: 1.2rem;
    margin: 0;
}

.plano-titulo {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--plano-cor, var(--primary-color)) 22%, rgba(255, 255, 255, 0.05)), rgba(255, 255, 255, 0.04));
    border: 1px solid color-mix(in srgb, var(--plano-cor, var(--primary-color)) 35%, rgba(255, 255, 255, 0.18));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.plano-preco-wrapper {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.plano-preco {
    font-size: 1.6rem;
    font-weight: 700;
}

.plano-preco span {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    margin-left: 4px;
}

.plano-preco--de .plano-preco__valor {
    text-decoration: line-through;
    opacity: 0.8;
}

.plano-preco-label.de {
    background: rgba(255, 255, 255, 0.18);
    color: var(--texto-claro);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.plano-preco.pix {
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--plano-cor, var(--amarelo));
}

.plano-preco-label {
    background: rgba(255, 255, 255, 0.16);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plano-precos-extras {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.plano-periodo {
    font-size: 0.95rem;
    opacity: 0.9;
}

.plano-lista {
    list-style: none;
    display: grid;
    gap: 4px;
    padding-left: 0;
    font-size: 0.8rem;
    line-height: 1.35;
}

.plano-descricao ul {
    padding-left: 18px;
}

.plano-descricao .plano-lista {
    padding-left: 0;
}

.plano-descricao li {
    margin-bottom: 6px;
}

.plano-descricao .plano-lista li {
    margin-bottom: 0;
}

.plano-aviso {
    margin: 12px 0 0;
    padding-top: 8px;
    font-size: 0.75rem;
    font-weight: 400;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.plano-promocao {
    position: relative;
    display: block;
    box-sizing: border-box;
    margin: 0.75rem 0;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 14px 16px;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    flex: 1 1 auto;
    background: linear-gradient(135deg, color-mix(in srgb, var(--plano-cor, var(--primary-color)) 72%, #66c7ff), rgba(255, 255, 255, 0.12));
    color: #0d0d0d;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.plano-promocao-linha {
    margin: 0;
}

.plano-promocao i {
    font-size: 1.3rem;
    color: #0d0d0d;
}

.plano-promocao__texto {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-weight: 800;
}

.plano-promocao__label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(13, 13, 13, 0.86);
}

.plano-promocao__nome {
    line-height: 1.2;
}

.plano-promocao__valor {
    font-weight: 700;
    color: #0d0d0d;
    opacity: 0.95;
    font-size: 1.05rem;
}

.plano-promocoes {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    gap: 8px;
}

.plano-promocoes__titulo {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.plano-promocoes__lista {
    display: grid;
    gap: 10px;
}

.plano-promocoes__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: inherit;
    text-decoration: none;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.plano-promocoes__item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.plano-promocoes__nome {
    font-weight: 600;
}

.plano-promocoes__valor {
    font-weight: 700;
    color: var(--amarelo);
}

.plano-principal .plano-promocao {
    border: 2px solid rgba(0, 0, 0, 0.08);
}

@keyframes pulsoPromocao {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16); }
    50% { box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.08); }
    100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16); }
}

.plano-lista li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.plano-lista li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--amarelo);
    font-size: 0.75em;
    line-height: 1;
    margin-top: 0.2em;
}

.btn-secundario {
    background: transparent;
    color: var(--texto-claro);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-secundario:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.plano-card .btn-primario,
.plano-card .btn-secundario {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 800;
}

.plano-card .btn-primario:hover,
.plano-card .btn-secundario:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.plano-card .btn-primario {
    background: color-mix(in srgb, var(--primary-color) 80%, #fff 20%);
    color: #0d0d0d;
    border: none;
}

.plano-card .btn-secundario {
    background: rgba(255, 255, 255, 0.08);
    color: var(--texto-claro);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.buy-button-wrapper {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.plano-acao {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plano-cta {
    width: 100%;
    border-radius: 18px;
    padding: 18px 20px;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    cursor: pointer;
    color: var(--texto-claro);
    background: rgba(10, 12, 20, 0.65);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.plano-cta:focus-visible {
    outline: 3px solid rgba(0, 174, 239, 0.5);
    outline-offset: 3px;
}

.plano-cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.plano-cta__badge {
    align-self: flex-start;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #0b3a52;
}

.plano-cta__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.plano-cta__title {
    font-size: 1.1rem;
    font-weight: 800;
}

.plano-cta__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.plano-cta__price-value {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.plano-cta__price-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
}

.plano-cta__benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
    font-size: 0.8rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.8);
}

.plano-cta__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.plano-cta__benefits li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--amarelo);
    font-size: 0.75em;
    line-height: 1;
    margin-top: 0.2em;
}

.plano-cta--assinatura {
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 70%, #0b1320 30%), #071018 65%);
    border: 1px solid color-mix(in srgb, var(--primary-color) 75%, #ffffff 25%);
    box-shadow: 0 12px 30px rgba(0, 174, 239, 0.25);
}

.plano-cta--assinatura:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
    box-shadow: 0 16px 36px rgba(0, 174, 239, 0.32);
}

.plano-cta--assinatura:active {
    transform: translateY(0);
}

.plano-cta--assinatura .plano-cta__price-value {
    font-size: 1.9rem;
}

.plano-cta--avulso {
    background: rgba(12, 15, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.plano-cta--avulso:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.plano-cta--avulso:active {
    transform: translateY(0);
}

.plano-cta--avulso .plano-cta__price-value {
    font-size: 1.45rem;
}

@media (max-width: 768px) {
    .plano-cta {
        padding: 16px 16px;
        gap: 8px;
    }

    .plano-cta__title {
        font-size: 1rem;
    }

    .plano-cta--assinatura .plano-cta__price-value {
        font-size: 1.6rem;
    }

    .plano-cta--avulso .plano-cta__price-value {
        font-size: 1.25rem;
    }
}

.destaque-card {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
}

.card {
    background: var(--branco);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-drawer {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1000;
}

.checkout-drawer.aberto {
    display: block;
}

.checkout-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

.checkout-drawer__panel {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(520px, 100%);
    height: 100%;
    background: var(--branco);
    color: var(--texto-escuro);
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.checkout-drawer.aberto .checkout-drawer__panel {
    transform: translateX(0);
}

.checkout-drawer__back {
    position: absolute;
    top: 16px;
    left: 16px;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    color: var(--texto-escuro);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    cursor: pointer;
}

.checkout-drawer__close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
}

.checkout-drawer__header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding-top: 32px;
    padding-right: 36px;
}

.checkout-drawer__logo {
    width: 112px;
    height: 112px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.checkout-drawer__mp-logo {
    width: 96px;
    height: auto;
}

.checkout-drawer__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    margin: 0 0 4px;
    color: var(--secondary-color);
    font-weight: 700;
}

.checkout-drawer__title {
    margin: 0;
    font-size: 1.3rem;
    color: var(--texto-escuro);
}

.checkout-drawer__price {
    margin: 6px 0 0;
    font-weight: 700;
    color: var(--primary-color);
}

.checkout-drawer__form {
    display: grid;
    gap: 12px;
}

.checkout-drawer__form label {
    font-weight: 600;
}

.checkout-drawer__form input {
    border-radius: 12px;
    border: 1px solid rgba(15, 17, 26, 0.15);
    padding: 12px 14px;
    font-size: 0.95rem;
}

.checkout-drawer__actions {
    display: grid;
    gap: 10px;
}

.checkout-drawer__status {
    min-height: 18px;
    font-size: 0.9rem;
}

.checkout-drawer__status.success {
    color: #137333;
}

.checkout-drawer__status.error {
    color: #c5221f;
}

.checkout-drawer__payment-toggle {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.checkout-drawer__payment-button {
    border: 1px solid rgba(15, 17, 26, 0.15);
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkout-drawer__payment-button.is-active {
    background: var(--primary-color);
    color: #0f111a;
    border-color: transparent;
}

.checkout-drawer__pix {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 16px;
    display: grid;
    gap: 10px;
}

.checkout-drawer__pix[hidden] {
    display: none;
}

.checkout-drawer__pix-output {
    display: grid;
    gap: 10px;
}

.checkout-drawer__pix-image img {
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.checkout-drawer__pix-label {
    margin: 0;
    font-weight: 700;
}

.checkout-drawer__pix-code {
    font-size: 0.9rem;
    word-break: break-all;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px dashed rgba(0, 0, 0, 0.15);
}

.checkout-drawer__pix-code-input {
    font-size: 0.9rem;
    border-radius: 10px;
    border: 1px dashed rgba(0, 0, 0, 0.15);
    padding: 10px;
    background: #fff;
    width: 100%;
}

.checkout-drawer__pix-copy {
    justify-self: center;
}

.checkout-drawer__card {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 14px;
    padding: 12px;
}

.checkout-drawer__card-status {
    margin-top: 12px;
    font-size: 0.9rem;
}

.checkout-drawer__card-status.success {
    color: #137333;
}

.checkout-drawer__card-status.error {
    color: #c5221f;
}

#drawer-assinatura,
#checkout-assinatura {
    overflow: visible;
}

#mp-brick-assinatura-container {
    width: 100%;
    min-height: unset;
}

.mp-subscription-card-form {
    display: grid;
    gap: 10px;
    align-content: flex-start;
}

.mp-subscription-card-form__row {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.mp-subscription-card-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mp-subscription-card-form__field label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    padding-bottom: 3px;
}

.mp-subscription-card-form__row input,
.mp-subscription-card-form__row select,
.mp-subscription-card-form__row .mp-field {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    font-size: 0.95rem;
    min-height: 48px;
    align-self: flex-start;
}

.mp-subscription-card-form__row .mp-field {
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
}

.mp-subscription-card-form__row .mp-field iframe {
    height: 100% !important;
}

.checkout-drawer__actions {
    margin-top: 4px;
}

.checkout-drawer__actions .btn-primario,
.checkout-drawer__actions .btn-secundario {
    width: 100%;
}

.checkout-drawer__notice {
    margin: 6px 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2dffc7;
}

.checkout-drawer__plan {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 14px;
    padding: 12px;
}

.checkout-drawer__plan-texts {
    display: grid;
    gap: 4px;
}

.checkout-drawer__mode-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    background: rgba(0, 0, 0, 0.06);
    color: #0f172a;
}

.checkout-drawer__mode-badge.assinatura {
    background: rgba(0, 174, 239, 0.16);
    color: #005b82;
}

.checkout-drawer__mode-badge.avulso {
    background: rgba(255, 194, 28, 0.22);
    color: #7a4b00;
}

.checkout-drawer__plan-title {
    margin: 0;
    font-size: 1.1rem;
}

.checkout-drawer__plan-price {
    margin: 0;
    font-weight: 700;
    color: var(--primary-color);
}

.checkout-plan-price--de {
    display: block;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
}

.checkout-plan-price--por {
    display: block;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.05rem;
}

.checkout-drawer__plan-recurrence {
    margin: 0;
    font-weight: 600;
    color: var(--secondary-color);
}

.checkout-drawer__plan-description {
    margin: 6px 0 0;
    color: #475569;
}

.checkout-drawer__debug {
    margin: 12px 0;
    padding: 12px 16px;
    border-radius: 12px;
    background: #fff7ed;
    border: 1px dashed #fdba74;
    color: #7c2d12;
    font-size: 0.82rem;
}

.checkout-price-de {
    font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 6px;
}

.checkout-price-por {
    font-weight: 800;
    color: var(--primary-color);
}

.checkout-drawer__section {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 12px;
    display: grid;
    gap: 12px;
}

.checkout-drawer__hint {
    margin: 0;
    color: #334155;
}

.checkout-drawer__status.info {
    color: #0f172a;
}

.payment-alert {
    display: grid;
    gap: 8px;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.payment-alert--static .payment-alert__spinner {
    display: none;
}

.payment-alert__logo {
    max-width: 220px;
    width: 100%;
    height: auto;
}

.payment-alert__spinner {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    border: 4px solid #e2e8f0;
    border-top-color: var(--primary-color, #00aeef);
    animation: payment-alert-spin 0.8s linear infinite;
}

@keyframes payment-alert-spin {
    to {
        transform: rotate(360deg);
    }
}

.payment-alert__message {
    margin: 4px 0;
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
}

.payment-alert__timer {
    margin: 0;
    font-weight: 700;
    color: #00aeef;
    font-size: 1.1rem;
}

.payment-alert__note {
    margin: 0;
    color: #475569;
    min-height: 1.2em;
}

.payment-alert--error .payment-alert__message {
    color: #c5221f;
}

.payment-alert--error .payment-alert__timer {
    color: #c5221f;
}

.contact-highlight {
    outline: 3px solid var(--primary-color, #00aeef);
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.25);
    border-radius: 8px;
}

.checkout-drawer__status.warning {
    color: #854d0e;
    background: #fef9c3;
    padding: 8px 10px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .checkout-drawer {
        height: 100vh;
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100dvh;
    }

    .checkout-drawer__panel {
        inset: 0;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100dvh;
        max-height: none;
        border-radius: 0;
        padding: calc(20px + env(safe-area-inset-top)) 18px calc(20px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 600px) {
    .checkout-drawer__header {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding-right: 0;
        gap: 10px;
    }

    .checkout-drawer__logo {
        width: 88px;
        height: 88px;
    }

    .checkout-drawer__mp-logo {
        width: 84px;
    }

    .checkout-drawer__close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }
}

.plano-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.plano-modal.aberto {
    display: flex;
}

.plano-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.plano-modal__content {
    position: relative;
    background: rgba(15, 17, 26, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    border-radius: 18px;
    padding: 22px;
    width: min(520px, 92vw);
    display: grid;
    gap: 14px;
    color: var(--texto-claro);
    z-index: 1;
}

.plano-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--texto-claro);
    font-size: 1.3rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.plano-modal__close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.plano-modal__header {
    display: grid;
    gap: 4px;
}

.plano-modal__eyebrow {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.78rem;
    color: var(--amarelo);
}

.plano-modal__titulo {
    font-size: 1.4rem;
    margin: 0;
}

.plano-modal__precos {
    display: grid;
    gap: 6px;
}

.plano-modal__preco {
    font-weight: 700;
}

.plano-modal__preco span {
    opacity: 0.8;
    margin-right: 6px;
}

.plano-modal__preco--pix {
    color: var(--primary-color);
}

.plano-modal__promocao {
    background: linear-gradient(135deg, rgba(255, 194, 28, 0.14), rgba(0, 174, 239, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px;
    display: grid;
    gap: 6px;
}

.plano-modal__promo-titulo {
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.plano-modal__promo-valor {
    margin: 0;
    font-weight: 700;
}

.plano-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.plano-modal__continuar {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card .profissao {
    font-weight: 600;
    color: #0f172ab3;
}

.author {
    display: grid;
    gap: 2px;
}

.card-imagem img {
    border-radius: 12px;
    width: 100%;
}

.dynamic-sections {
    display: grid;
    gap: 32px;
}

.secao-dinamica {
    background: var(--secao-cor-fundo, #f2f4f7);
    color: var(--texto-escuro);
}

.secao-dinamica--light-text {
    color: var(--texto-claro);
}

.secao-dinamica .titulo-icone,
.secao-dinamica .secao-dinamica__subtitulo {
    color: inherit;
}

.secao-dinamica .titulo-icone i {
    color: inherit;
}

.secao-dinamica .secao-dinamica__subtitulo {
    margin-top: 8px;
    max-width: 720px;
    opacity: 0.92;
}

.dynamic-cards-wrapper {
    margin-top: 26px;
    overflow: hidden;
}

.dynamic-cards {
    display: inline-flex;
    gap: 16px;
    will-change: scroll-position;
    scroll-behavior: smooth;
}

.dynamic-card {
    min-width: min(320px, 82vw);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dynamic-card img {
    width: 100%;
    border-radius: 12px;
}

.dynamic-card__texto {
    margin: 0;
    color: var(--texto-escuro);
}

.dynamic-card:focus-visible {
    outline: 2px solid var(--laranja);
    outline-offset: 4px;
}

.movimento-zoom .dynamic-card:hover,
.movimento-zoom .dynamic-card:focus-visible,
.movimento-zoom .dynamic-card:active,
.movimento-zoom .dynamic-card.is-touched {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.movimento-auto .dynamic-cards-wrapper {
    cursor: grab;
}

.movimento-auto .dynamic-cards-wrapper.is-grabbing {
    cursor: grabbing;
}

/* ===== Movimento auto: por padrão, NÃO deixa o wrapper vazar ===== */
.secao-dinamica.movimento-auto .dynamic-cards-wrapper {
    overflow: hidden;
}

/* trilho de cards (já existe, mas garantir) */
.secao-dinamica.movimento-auto .dynamic-cards {
    display: inline-flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .secao-dinamica .dynamic-cards-wrapper {
        overflow: visible;
    }

    .secao-dinamica .dynamic-cards {
        display: grid;
        gap: 16px;
    }

    .secao-dinamica .dynamic-card {
        flex: 1 1 auto;
        min-width: 100%;
    }

    .secao-dinamica.movimento-auto .dynamic-cards-wrapper {
        overflow: visible !important;
        scroll-snap-type: none;
        touch-action: auto;
        padding-bottom: 0;
    }

    .secao-dinamica.movimento-auto .dynamic-cards {
        display: grid;
        gap: 16px;
        will-change: auto;
    }

    .secao-dinamica.movimento-auto .dynamic-card {
        scroll-snap-align: none;
    }
}

.contato {
    background: var(--laranja-escuro);
    color: var(--texto-claro);
    padding-bottom: 40px;
}

.contato .footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.2fr);
    align-items: flex-start;
    gap: 32px;
}

.contato-info {
    display: grid;
    gap: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-grid .footer-lista li {
    align-items: flex-start;
}

.contact-grid .footer-lista span {
    overflow-wrap: anywhere;
}

.footer-bloco {
    display: grid;
    gap: 10px;
}

.footer-logo-bloco {
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-logo img {
    height: 280px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.footer-mp-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--texto-claro);
    font-size: 0.75rem;
}

.footer-mp-logo--bottom {
    margin-top: 24px;
}

.footer-mp-logo img {
    width: 120px;
    height: auto;
}

.footer-tagline {
    margin: 0;
}

.footer-lista {
    list-style: none;
    display: grid;
    gap: 8px;
    padding-left: 0;
}

.footer-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-redes {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-grid a {
    color: var(--texto-claro);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-grid a:hover {
    color: var(--amarelo);
}

.contato-formulario {
    background: rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    display: grid;
    gap: 10px;
}

.contato .test-form-wrapper {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    color: #0f172a;
}

.contato-formulario__sub {
    font-size: 0.95rem;
    color: #0b0b0b;
}

.form-contato {
    display: grid;
    gap: 10px;
}

.form-contato input,
.form-contato textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: var(--texto-claro);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contato .form-contato input,
.contato .form-contato textarea {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

.contato .form-contato .btn-secundario {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #0b0b0b;
    border: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.contato .form-contato .btn-secundario:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 90%, #fff 10%), color-mix(in srgb, var(--secondary-color) 90%, #fff 10%));
}

.form-contato input:focus,
.form-contato textarea:focus {
    border-color: var(--amarelo);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 24%, transparent);
}

.form-contato textarea {
    resize: vertical;
    min-height: 90px;
}

.desafio-captcha {
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 12px;
    display: grid;
    gap: 8px;
}

.desafio-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.desafio-pergunta {
    font-weight: 700;
    color: var(--amarelo);
}

.form-contato .mensagem {
    min-height: 22px;
    margin: 0;
}

.copyright {
    text-align: center;
    margin-top: 28px;
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: 400;
}

.copyright a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1300;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.cookie-bar[hidden] {
    display: none;
}

.cookie-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-bar__text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cookie-bar__text i {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 4px;
}

.cookie-bar__title {
    margin: 0 0 4px;
    font-weight: 700;
    color: #0f172a;
}

.cookie-bar__description {
    margin: 0;
    color: #1f2937;
    line-height: 1.5;
    font-size: 0.95rem;
}

.cookie-bar__button {
    white-space: nowrap;
}

body.cookie-bar-visible .secao {
    padding-top: calc(140px + var(--cookie-bar-height));
}

@media (max-width: 900px) {
    .contato .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        column-gap: 32px;
        row-gap: 12px;
    }
}

/* Menu responsivo */
@media (max-width: 768px) {
    .topo {
        flex-wrap: wrap;
        gap: 12px;
        position: fixed;
        top: var(--cookie-bar-height, 0);
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1100;
        justify-content: center;
    }

    .logo {
        height: 36px;
    }

    .logo-area {
        margin: 0 auto;
    }

    .cookie-bar__inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .brand {
        font-size: 0.95rem;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    .menu {
        position: static;
    }

    .menu ul {
        position: absolute;
        left: 50%;
        right: auto;
        top: calc(100% + 8px);
        background: var(--azul-escuro);
        flex-direction: column;
        gap: 0;
        width: min(320px, 92vw);
        max-width: calc(100vw - 32px);
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        transform: translateX(-50%);
    }

    .menu ul.ativo {
        max-height: 300px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .menu a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
    }

    .topo {
        padding: 12px 16px;
    }

    .secao {
        padding: 100px 16px;
    }

    .hero-content {
        gap: 22px;
        text-align: center;
        align-items: center;
    }

    .hero-textos {
        align-items: center;
        text-align: center;
    }

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

    .test-form-wrapper {
        padding: 20px;
        border-radius: 18px;
    }

    .form-locucao {
        padding: 18px;
        text-align: left;
    }

    .planos-container {
        gap: 16px;
    }

    .planos-container .plano-card {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
    }

    .plano-card.plano-principal {
        transform: none;
    }

    .dynamic-cards-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
    }

    .dynamic-card {
        scroll-snap-align: start;
    }

    .contato .test-form-wrapper {
        margin: 0 auto;
        max-width: 100%;
    }

    .footer-logo img {
        height: 200px;
    }
}
