/* ===== Página Planos e Preços ===== */
.planos-page {
    padding-bottom: 0;
}

/* Seção 1: Planos - mesmo fundo da hero da home (verde sutil + grade) */
.planos-section {
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
    background-color: rgba(232, 245, 233, 0.4);
}

.planos-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.4;
    pointer-events: none;
}

.planos-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.planos-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text);
    text-align: center;
    margin-bottom: 2.5rem;
}

.planos-title-green {
    color: var(--green);
    font-weight: 700;
}

.planos-title strong {
    font-weight: 700;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 900px) {
    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.plan-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.08), 0 4px 8px -4px rgba(0, 0, 0, 0.04);
}

.plan-card-featured {
    background: #0f172a;
    border-color: rgba(0, 214, 107, 0.2);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.plan-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -6px rgba(0, 0, 0, 0.2), 0 6px 12px -4px rgba(0, 0, 0, 0.08);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: #dcfce7;
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    white-space: nowrap;
}

.plan-badge svg {
    color: var(--green);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.plan-card-featured .plan-name {
    color: #fff;
}

.plan-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.plan-card-featured .plan-desc {
    color: #94a3b8;
}

.plan-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.15rem;
}

.plan-card-featured .plan-price {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.plan-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.plan-card-featured .plan-currency {
    color: #94a3b8;
}

.plan-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.plan-card-featured .plan-value {
    color: #fff;
}

.plan-period {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.plan-card-featured .plan-period {
    color: #94a3b8;
}

.plan-features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 0.85rem;
}

.plan-features li:last-child {
    margin-bottom: 0;
}

.plan-card-featured .plan-features li {
    color: #e2e8f0;
}

.plan-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: #7dd3a0;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.plan-check::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.plan-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.plan-card-featured .plan-cta {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.plan-card-featured .plan-cta:hover {
    background: var(--green-dark);
}

/* Seção 2: Simulador */
.simulator-section {
    padding: 4rem 2rem;
    background-color: rgba(232, 245, 233, 0.45);
}

.simulator-inner {
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
}

@media (min-width: 1100px) {
    .simulator-inner {
        max-width: 1100px;
    }
}

.simulator-title {
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--text);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.simulator-title-line1,
.simulator-title-line2 {
    display: block;
}

.simulator-title-line2 {
    margin-top: 0.15rem;
}

.simulator-title-green {
    color: var(--green);
    font-weight: 700;
}

.simulator-title strong {
    font-weight: 700;
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .simulator-title {
        font-size: 1.35rem;
    }
    .simulator-grid {
        grid-template-columns: 1fr;
    }
}

.simulator-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.simulator-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.simulator-card-disparos .simulator-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.simulator-card-disparos .simulator-card-header .simulator-label {
    margin-bottom: 0;
}

.simulator-disparos-badge {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    background: rgba(0, 214, 107, 0.15);
    color: var(--green-dark);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
}

.simulator-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.simulator-label-icon {
    display: flex;
    color: var(--green);
}

.simulator-label-icon svg {
    width: 18px;
    height: 18px;
}

.simulator-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 0.25rem;
    box-sizing: border-box;
}

.simulator-input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 214, 107, 0.15);
}

.simulator-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0;
    margin-top: 0.35rem;
}

.simulator-slider-wrap {
    margin-bottom: 0.5rem;
}

.simulator-slider {
    display: block;
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--green) 0%, var(--green) var(--slider-pct, 33.33%), #e5e7eb var(--slider-pct, 33.33%));
    border-radius: 3px;
}

.simulator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.simulator-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.simulator-slider::-moz-range-track {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
}

.simulator-total-disparos {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.simulator-total-disparos strong {
    color: var(--text);
}

.simulator-result {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.simulator-result-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.simulator-result-icon {
    display: flex;
    color: var(--green);
}

.simulator-result-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.simulator-dl {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.35rem 1.5rem;
    align-items: baseline;
}

.simulator-dl dt {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

.simulator-dl dd {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    text-align: right;
}

.simulator-total-label {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 700 !important;
    color: var(--text) !important;
}

.simulator-excedentes {
    color: #c2410c !important;
}

.simulator-total-value-wrap {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: right;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.25rem;
}

.simulator-total-value {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--green) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.simulator-total-period {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.simulator-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.simulator-note svg {
    color: var(--green);
    flex-shrink: 0;
}

.simulator-important {
    font-size: 0.875rem;
    color: var(--text-muted);
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    line-height: 1.5;
}

.simulator-important strong {
    color: var(--text);
}

/* Seção Parceiros Meta */
.meta-partners-section {
    padding: 4rem 2rem;
    background-color: rgba(232, 245, 233, 0.4);
}

.meta-partners-inner {
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
}

@media (min-width: 1100px) {
    .meta-partners-inner {
        max-width: 1100px;
    }
}

.meta-partners-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 2rem 2.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.meta-partners-card-content {
    max-width: 560px;
    margin: 0 auto;
}

.meta-partners-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.meta-partners-shield {
    width: 48px;
    height: 48px;
    color: var(--green);
}

.meta-partners-title {
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--text);
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.meta-partners-title strong {
    font-weight: 700;
}

.meta-partners-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.meta-partners-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: #fbfcfc;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.meta-pill svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

.meta-partners-checklist {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.meta-partners-checklist li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: var(--text);
    font-weight: 500;
}

.meta-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.meta-check::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.meta-partners-footer {
    font-size: 0.8125rem;
    color: #9ca3af;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.meta-partners-footer a {
    color: #6b7280;
    font-weight: 400;
    text-decoration: underline;
}

.meta-partners-footer a:hover {
    color: #4b5563;
}

/* Seção Teste por 7 dias */
.trial-section {
    padding: 4rem 2rem;
    background: #fff;
}

.trial-inner {
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
}

@media (min-width: 1100px) {
    .trial-inner {
        max-width: 1100px;
    }
}

.trial-title {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text);
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.trial-title strong {
    font-weight: 700;
}

.trial-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.55;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.trial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .trial-cards {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}

.trial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(0, 214, 107, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.trial-card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.trial-card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--green);
}

.trial-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.trial-card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Seção Perguntas frequentes */
.faq-section {
    padding: 4rem 2rem;
    background-color: rgba(232, 245, 233, 0.45);
}

.faq-inner {
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
}

@media (min-width: 1100px) {
    .faq-inner {
        max-width: 1100px;
    }
}

.faq-title {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.35;
}

.faq-title strong {
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item.is-open {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-chevron {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid var(--text-muted);
    border-bottom: 1.5px solid var(--text-muted);
    transform: rotate(45deg);
    margin-bottom: 4px;
    transition: transform 0.25s ease, border-color 0.2s ease;
}

.faq-question:hover .faq-chevron {
    border-color: var(--text);
}

.faq-item.is-open .faq-chevron {
    transform: rotate(-135deg);
    margin-bottom: -4px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.25rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 280px;
    padding: 0 1.25rem 1rem;
}

.faq-answer p {
    margin: 0;
    padding-left: 0;
    padding-top: 0.35rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.55;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.is-open .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}
