@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700&display=swap');

:root {
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --text-main: #111827;
    --text-muted: #4b5563;
    --primary: #000000;
    --primary-hover: #1f2937;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --border-color: #e5e7eb;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 10%;
    background-color: #0a0a0a;
}

/* ── Netflix-style hero background ── */
.netflix-container {
    position: absolute;
    left: 44%;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.netflix-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to right, #0a0a0a 0%, rgba(10, 10, 10, 0.5) 22%, transparent 55%),
        linear-gradient(to top, #0a0a0a 5%, transparent 28%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, transparent 22%);
}

.netflix-container-perspective {
    position: absolute;
    inset: -25% 0;
    perspective: 1200px;
    perspective-origin: 0% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.netflix-container-background {
    display: flex;
    flex-direction: row;
    gap: 14px;
    transform: rotateY(-6deg) rotateX(4deg);
    transform-style: preserve-3d;
    height: 100%;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
}

.netflix-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    animation: netflixScrollUp 48s linear infinite;
}

.netflix-thumbnail {
    width: 170px;
    height: 255px;
    border-radius: 10px;
    background-size: cover;
    background-position: center top;
    flex-shrink: 0;
    opacity: 0.9;
}

@keyframes netflixScrollUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes netflixScrollDown {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0);
    }
}

.netflix-box--down {
    animation-name: netflixScrollDown;
}

.hero-content {
    max-width: 700px;
    z-index: 3;
    animation: fadeInLeft 1s ease-out;
}

.hero-h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

/* CTA Actions Container */
.hero-actions {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
}

.hero-actions .btn {
    flex: 1;
    width: 100%;
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    /* Garante que ocupem 50% cada dentro do form-row */
}

.form-row {
    display: flex;
    gap: 1rem;
}

input {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

input:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

input:focus {
    outline: none;
    border-color: #6366f1;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #ffffff;
    width: 100%;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
    background: linear-gradient(135deg, #c8cdd6 0%, #e8ecf0 45%, #b0b8c4 100%);
    color: #1a1a2e;
    border: none;
}

.btn-secondary:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(180, 190, 210, 0.25);
}

.trust-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-weight: 500;
    width: 100%;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ══════════════════════════════
   Seção Resultados
══════════════════════════════ */
.resultados {
    background: #ffffff;
    padding: 120px 8%;
}

.resultados-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.resultados-h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 1.25rem;
}

.resultados-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-muted);
    line-height: 1.7;
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

.resultado-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
}

.resultado-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.resultado-card:hover img {
    transform: scale(1.06);
}

.resultado-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 6px;
}

.resultados-cta {
    display: flex;
    justify-content: center;
}

.btn-resultados-cta {
    width: auto;
    padding: 1rem 3rem;
    font-size: 1.05rem;
}

/* ══════════════════════════════
   Seção Diferenciais
══════════════════════════════ */
.diferenciais {
    background: #ffffff;
    padding: 120px 8%;
}

.diferenciais-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.diferenciais-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.diferenciais-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto 64px;
}

.diferencial-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #f9fafb;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 2.25rem 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.1);
}

.diferencial-icone {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    flex-shrink: 0;
}

.diferencial-corpo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.diferencial-titulo {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.diferencial-desc {
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* ══════════════════════════════
   Seção Etapas — Timeline Horizontal
══════════════════════════════ */
.etapas {
    background: #e4e4e4;
    padding: 100px 8%;
}

.etapas-header {
    text-align: center;
    margin-bottom: 72px;
}

.etapas-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.etapas-subtitle {
    font-size: 1.05rem;
    color: rgba(26, 26, 26, 0.6);
    line-height: 1.6;
}

.etapas-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    margin-bottom: 64px;
}

.etapa-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.etapa-circulo {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.etapa-item:hover .etapa-circulo {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
}

.etapa-conector {
    flex: 0 0 auto;
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.55);
    align-self: center;
    margin-top: -1.5rem;
    position: relative;
    top: -24px;
}

.etapa-numero {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.4rem;
}

.etapa-titulo {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.etapa-desc {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.65);
    line-height: 1.6;
    max-width: 180px;
    margin: 0 auto;
}

/* ══════════════════════════════
   Modal
══════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.modal-ativo {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.modal-ativo .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    background: #e5e7eb;
    color: var(--text-main);
}

.modal-titulo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.modal-subtitulo {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form input {
    background-color: #f9fafb;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.modal-form input::placeholder {
    color: #9ca3af;
}

.modal-form input:focus {
    background-color: #ffffff;
}

/* ══════════════════════════════
   Seção Planos / Preços
══════════════════════════════ */
.planos {
    background: #000000; /* Fundo preto conforme solicitado */
    padding: 100px 8%;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.planos-netflix-bg {
    position: absolute;
    inset: -20%; /* Expande um pouco para evitar bordas sem imagem no blur */
    opacity: 0.25; /* Aumentado para 25% */
    filter: blur(4px); /* Reduzido o blur */
    -webkit-filter: blur(4px);
    z-index: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Garante que ocupe todo o espaço e fique centralizado */
.planos-netflix-bg .netflix-container-perspective {
    position: relative;
    width: 100%;
    height: 100%;
}

.planos-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.planos-h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center; /* Permite que o card central fique maior */
    position: relative;
    z-index: 2;
}

.plano-card {
    background: #0a0a0a;
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Bordas com Gradiente (via ::before) */
.plano-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px; /* Espessura da borda */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Silver */
.plano-silver::before {
    background: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 100%);
}

/* Gold (Destaque Dourado) */
.plano-gold {
    transform: scale(1.05);
    background: #11100d;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.15); /* Glow dourado */
    z-index: 10;
}
.plano-gold:hover {
    transform: scale(1.07);
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.3);
}
.plano-gold::before {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%); /* Dourado */
    padding: 3px;
}

/* Platinum VIP (Antigo Gold sem destaque de tamanho) */
.plano-platinum::before {
    background: var(--accent-gradient);
}

/* Tag Mais Escolhido */
.plano-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); /* Dourado */
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.plano-nome {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}
.plano-prata-texto { color: #d1d5db; }
.plano-ouro-texto { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.plano-platina-texto { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.plano-tipo {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.plano-preco {
    text-align: center;
    margin-bottom: 2rem;
}

.preco-de {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.preco-por {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.preco-destaque {
    font-size: 2.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #ffffff;
    letter-spacing: -1px;
    margin-left: 0.2rem;
}

.plano-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plano-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.plano-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-plano {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.btn-plano-black {
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-plano-black:hover {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-plano-gradient {
    background: var(--accent-gradient);
    background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}
.btn-plano-gradient:hover {
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

.btn-plano-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}
.btn-plano-gold:hover {
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
    transform: translateY(-2px);
}

/* Efeito Glow de Fundo na Seção */
.planos::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100, 102, 241, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* ══════════════════════════════
   Seção FAQ
══════════════════════════════ */
.faq {
    background-color: #f9fafb; /* Cinza claríssimo */
    padding: 100px 8%;
    color: var(--text-main);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #6366f1;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Vira um 'x' */
    color: #6366f1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ══════════════════════════════
   Rodapé
══════════════════════════════ */
.footer {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 8%;
    color: var(--text-muted);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
}

.footer-link {
    color: #39FF14; /* Verde Neon */
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 0.8;
}

/* ══════════════════════════════
   Responsivo
══════════════════════════════ */
@media (max-width: 1024px) {
    .hero {
        padding: 4rem 5%;
    }

    .resultados {
        padding: 80px 5%;
    }

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

    .diferenciais {
        padding: 80px 5%;
    }

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

    .planos {
        padding: 80px 5%;
    }

    .faq {
        padding: 80px 5%;
    }

    .planos-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: stretch;
    }

    .plano-gold {
        transform: scale(1);
    }
    .plano-gold:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .resultados {
        padding: 60px 1.5rem;
    }

    .faq {
        padding: 60px 1.5rem;
    }

    .resultados-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .modal-card {
        padding: 2rem 1.5rem;
    }

    .hero {
        padding: 6rem 1.5rem 2rem;
        align-items: flex-start;
    }

    .netflix-gradient {
        background:
            linear-gradient(to bottom, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.4) 40%, rgba(10, 10, 10, 0.85) 100%),
            linear-gradient(to right, rgba(10, 10, 10, 0.5) 0%, transparent 80%);
    }

    .form-row {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    /* Etapas Verticais no Mobile */
    .etapas-timeline {
        flex-direction: column;
        align-items: center;
    }

    .etapa-item {
        margin-bottom: 0.5rem;
    }

    .etapa-conector {
        width: 2px;
        height: 40px;
        margin: 1.5rem 0;
        top: 0;
    }
}