:root {
    --color-bg: #F3F4F6;
    --color-white: #FFFFFF;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2933;
    --color-gray-900: #111827;
    --color-primary: #2563EB;
    --color-primary-dark: #1D4ED8;
    --color-primary-soft: #DBEAFE;
    --color-whatsapp: #22C55E;
    --shadow-soft: 0 12px 26px rgba(15, 23, 42, 0.12);
    --radius-card: 18px;
    --transition-default: 0.2s ease;
}

/* BASE */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--color-bg);
    color: var(--color-gray-800);
    line-height: 1.5;
}

/* CONTAINER */

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HEADER */

.top-bar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(243,244,246,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(209,213,219,0.6);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

.logo img {
    height: 34px;
    width: auto;
}

/* NAV */

.main-nav {
    display: flex;
    gap: 18px;
    font-size: 0.9rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-gray-700);
    padding: 4px 0;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: var(--color-primary);
    transition: width var(--transition-default);
}

.main-nav a:hover::after {
    width: 100%;
}

/* BOTÕES */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color var(--transition-default), color var(--transition-default), box-shadow var(--transition-default), border-color var(--transition-default), transform var(--transition-default);
}

.btn-primary {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #FFFFFF;
    box-shadow: 0 14px 30px rgba(37,99,235,0.35);
    border: 1px solid #1D4ED8;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1D4ED8, #1E40AF);
    box-shadow: 0 18px 40px rgba(37,99,235,0.45);
    transform: translateY(-1px);
}

.btn-primary-outline {
    border-radius: 999px;
    padding: 8px 16px;
    border: 1px solid rgba(37,99,235,0.35);
    color: var(--color-primary);
    background: rgba(219,234,254,0.3);
    font-size: 0.85rem;
}

.btn-primary-outline:hover {
    background: rgba(219,234,254,0.7);
}

.btn-secondary {
    background-color: #E5E7EB;
    color: var(--color-gray-800);
    border: 1px solid #D1D5DB;
}

.btn-secondary:hover {
    background-color: #D1D5DB;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: #FFFFFF;
    border: 1px solid #16A34A;
}

.btn-whatsapp:hover {
    background-color: #16A34A;
}

.btn-whatsapp-outline {
    border-radius: 999px;
    padding: 7px 14px;
    border: 1px solid rgba(16,185,129,0.5);
    color: #047857;
    background: rgba(187,247,208,0.35);
    font-size: 0.85rem;
}

/* SEÇÕES */

.section {
    padding: 56px 0;
}

.section-white {
    background-color: var(--color-white);
}

.section-light {
    background-color: var(--color-gray-50);
}

.section-gray {
    background-color: var(--color-gray-100);
}

.hero {
    padding-top: 32px;
}

.hero-two-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
}

/* HERO */

.hero-text h1 {
    font-size: 2.1rem;
    line-height: 1.15;
    color: var(--color-gray-900);
    margin: 0 0 12px;
}

.hero-sub {
    margin: 0 0 16px;
    font-size: 1rem;
    color: var(--color-gray-700);
}

.hero-benefits {
    margin: 0 0 10px;
    padding-left: 20px;
    color: var(--color-gray-700);
    font-size: 0.95rem;
}

.hero-note {
    font-size: 0.8rem;
    color: var(--color-gray-600);
    margin-bottom: 14px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* HERO IMAGEM */

.hero-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    background: #E5E7EB;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.20);
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* SOBRE */

.about-orvia {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 32px;
    align-items: center;
}

.about-logo img {
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    display: block;
}

.about-text h2 {
    margin-top: 8px;
    margin-bottom: 12px;
    font-size: 1.6rem;
    color: var(--color-gray-900);
}

.about-text p {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--color-gray-700);
    font-size: 0.95rem;
}

.about-bullets {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.about-bullet {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.about-icon {
    font-size: 1.2rem;
}

/* TAG */

.tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--color-primary-soft);
    color: #1D4ED8;
    font-size: 0.75rem;
    font-weight: 500;
}

/* PROVA SOCIAL – fotos nos cards */

.social-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.social-card {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    padding: 16px 14px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border-color: #BFDBFE;
    background-color: #F9FAFB;
}

.social-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid #E5E7EB;
}

.social-person {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-name {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gray-900);
}

.social-city {
    margin: 0;
    font-size: 0.8rem;
    color: var(--color-gray-600);
}

.social-text {
    font-size: 0.9rem;
    color: var(--color-gray-800);
    margin: 0;
}

/* responsivo */
@media (max-width: 900px) {
    .social-cards {
        grid-template-columns: 1fr;
    }
}
/* COMO FUNCIONA */

.steps {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    padding: 18px 16px;
    box-shadow: var(--shadow-soft);
}

.step-number-badge {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background-color: var(--color-primary-soft);
    color: #1D4ED8;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

/* SEGURADORAS – CARROSSEL */

.insurers-carousel {
    margin-top: 24px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.insurers-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: insurers-scroll 30s linear infinite;
}

.insurers-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 0.9;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.insurers-track img:hover {
    transform: scale(1.05);
    opacity: 1;
}

@keyframes insurers-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* CONTATO – 2 cards mais largos */
.contact-cards {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* agora só 2 colunas */
    gap: 18px;
}

/* mantém o visual padrão dos cards */
.contact-card {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    padding: 18px 16px;
    box-shadow: var(--shadow-soft);
}

/* responsivo: em telas menores, 1 card por linha */
@media (max-width: 900px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}
/* FINAL CTA */

/* CTA FINAL */
/* CTA FINAL */

.final-cta {
    max-width: 640px;
    margin: 0 auto;
}

.final-cta-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta-sub {
    margin: 8px 0 18px;
    font-size: 0.95rem;
    color: var(--color-gray-700);
    text-align: center;
}

.final-cta-button {
    margin-top: 4px;
    margin-bottom: 14px;
}

/* linha dos argumentos abaixo do botão */
.final-cta-list {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--color-gray-800);
    width: 100%;
    display: flex;
    justify-content: center;
}

.final-cta-badges {
    display: inline-flex;
    flex-wrap: nowrap;          /* não permite quebrar linha */
    gap: 12px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;        /* mantém tudo em uma linha */
}

.final-cta-badge {
    font-size: 0.85rem;
    color: var(--color-gray-800);
    /* se quiser mais “limpo”, pode tirar o fundo:
    background-color: transparent;
    border: none;
    padding: 0;
    */
}

/* opcional: em telas muito pequenas deixar quebrar para não estourar */
@media (max-width: 480px) {
    .final-cta-badges {
        flex-wrap: wrap;        /* permite quebrar só no mobile */
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
}
/* FORM / WIZARD */

.page-title {
    font-size: 1.7rem;
    margin-bottom: 8px;
    color: var(--color-gray-900);
}

.page-subtitle {
    margin: 0 0 20px;
    color: var(--color-gray-700);
    font-size: 0.95rem;
}

.cotacao-header {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.cotacao-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    background: #E5E7EB;
}

.cotacao-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.wizard {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    padding: 20px 18px 22px;
    box-shadow: var(--shadow-soft);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-steps {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    margin-bottom: 14px;
    overflow-x: auto;
}

.step-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    border-radius: 999px;
    background-color: #E5E7EB;
    color: #4B5563;
}

.step-indicator.active {
    background-color: var(--color-primary-soft);
    color: #1D4ED8;
}

.step-indicator.completed {
    background-color: #DCFCE7;
    color: #15803D;
}

.step-number {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    font-size: 0.7rem;
}

/* FORMULÁRIOS */

.wizard-form {
    margin-top: 4px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--color-gray-700);
}

.form-group input,
.form-group select {
    border-radius: 8px;
    border: 1px solid #D1D5DB;
    padding: 8px 9px;
    font-size: 0.9rem;
    outline: none;
    background-color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.wizard-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.form-note {
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--color-gray-600);
}

/* PLANS */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.plan-card {
    border-radius: 16px;
    padding: 14px 12px 12px;
    border: 1px solid #E5E7EB;
    background-color: #F9FAFB;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, background-color 0.2s ease;
}

.plan-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
    transform: translateY(-1px);
}

.plan-card.selected {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
    background-color: #EFF6FF;
}

.plan-featured {
    position: relative;
    border-width: 2px;
    border-color: var(--color-primary);
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.plan-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
    background-color: #1D4ED8;
    color: #FFFFFF;
    border-radius: 999px;
    padding: 3px 8px;
}

.plan-included {
    margin: 0;
    padding-left: 18px;
    font-size: 0.85rem;
    color: var(--color-gray-700);
}

.plan-tagline {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-gray-700);
}

.btn-plan-select {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    padding: 7px 10px;
    background-color: #FFFFFF;
    border: 1px solid #D1D5DB;
    color: var(--color-gray-800);
    font-size: 0.85rem;
}

.btn-plan-select.selected {
    background-color: #2563EB;
    border-color: #2563EB;
    color: #FFFFFF;
}

/* EXTRAS */
.extras-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    font-size: 0.9rem;
}

.extra-label-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ícone ⓘ */
.extra-info-icon {
    font-size: 0.8rem;
    color: #4B5563;
    cursor: pointer;
    position: relative;
}

/* popover */
.extra-tooltip {
    position: absolute;
    left: 0;
    top: 140%;
    min-width: 240px;
    max-width: 280px;
    padding: 10px;
    border-radius: 8px;
    background-color: #111827;
    color: #F9FAFB;
    font-size: 0.8rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.extra-tooltip strong {
    display: block;
    margin-bottom: 4px;
}

.extra-tooltip p {
    margin: 2px 0;
}

.extra-tooltip-note {
    font-size: 0.75rem;
    color: #E5E7EB;
}

/* mostra ao passar o mouse no ícone */
.extra-info-icon:hover .extra-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.extras-list {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 8px 10px;
    border: 1px solid #E5E7EB;
    background-color: #F9FAFB;
    font-size: 0.85rem;
}

/* MODAL */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.modal-overlay.open {
    display: flex;
}

.modal-dialog {
    max-width: 420px;
    width: calc(100% - 32px);
    background-color: #FFFFFF;
    border-radius: 18px;
    padding: 20px 18px 22px;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.55);
    position: relative;
}

.modal-dialog h2 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #0F172A;
}

.modal-dialog p {
    margin: 6px 0;
    font-size: 0.9rem;
    color: #4B5563;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: none;
    font-size: 1.3rem;
    cursor: pointer;
}

/* FOOTER */

.footer {
    background-color: #111827;
    color: #9CA3AF;
    padding: 14px 0 18px;
    font-size: 0.8rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #22C55E; /* verde WhatsApp-style */
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
    text-decoration: none;
    z-index: 999;
}

.whatsapp-float:hover {
    background-color: #16A34A;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}

.whatsapp-svg {
    width: 26px;
    height: 26px;
    display: block;
}
/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */

@media (max-width: 900px) {
    .top-bar-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-two-columns,
    .about-orvia,
    .steps,
    .contact-cards,
    .final-cta,
    .cotacao-header,
    .plans-grid,
    .extras-list,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .insurers-track img {
        height: 32px;
    }
.about-highlight {
    margin: 10px 0 18px;
    font-size: 0.95rem;
    color: #111827;
}
.about-highlight strong {
    color: #111827;
}

/* --------- PLANOS (ETAPA NÍVEL DE PROTEÇÃO) --------- */

.plans-grid {
    display: grid;
    gap: 18px;
}

@media (min-width: 900px) {
    .plans-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.plan-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 16px 14px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-card h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #111827;
}

.plan-tagline {
    margin: 0;
    font-size: 0.9rem;
    color: #4B5563;
}

/* NOVO: seções internas dos planos */
.plan-section {
    margin-top: 8px;
}

.plan-section h4 {
    margin: 0 0 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
}

.plan-included {
    margin: 0;
    padding-left: 18px;
    font-size: 0.85rem;
    color: #374151;
}

.plan-included li + li {
    margin-top: 2px;
}

.plan-important h4 {
    color: #DC2626; /* vermelho leve para "Importante" */
}

.plan-tip {
    margin: 4px 0 0;
    font-size: 0.8rem;
    color: #4B5563;
}

/* badge “Mais escolhido” */
.plan-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.75rem;
    border-radius: 999px;
    background-color: #ECFDF3;
    color: #15803D;
    margin-bottom: 6px;
}

/* destaque do plano Essencial selecionado em verde */
.plan-card.plan-selected {
    border: 2px solid #22C55E;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.15);
}

.plan-card.plan-selected .btn-plan-select {
    background-color: #16A34A;
    border-color: #16A34A;
    color: #FFFFFF;
}

/* botão plano */
.btn-plan-select {
    margin-top: auto;
    width: 100%;
    font-size: 0.9rem;
}

/* DESTACAR PLANOS AO PASSAR O MOUSE E AO CLICAR */

/* efeito ao passar o mouse em qualquer plano */
.plan-card {
    cursor: pointer;
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease,
        border-color 0.12s ease,
        background-color 0.12s ease,
        opacity 0.12s ease;
}

.plan-card:hover {
    border-color: #22C55E;          /* verde */
    background-color: #F0FDF4;      /* verde bem claro */
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 22px rgba(34, 197, 94, 0.16);
}

/* plano selecionado em evidência */
.plan-card.plan-selected {
    border: 2px solid #22C55E;
    background-color: #ECFDF3;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.22);
    transform: translateY(-3px) scale(1.03);
}

/* outros planos ficam mais apagados quando um está selecionado */
.plan-card.plan-dimmed {
    opacity: 0.55;
    filter: grayscale(0.1);
}

/* botão dentro do plano */
.btn-plan-select {
    transition:
        background-color 0.12s ease,
        border-color 0.12s ease,
        color 0.12s ease,
        transform 0.12s ease;
}

/* botão do plano selecionado em verde */
.plan-card.plan-selected .btn-plan-select {
    background-color: #16A34A;
    border-color: #16A34A;
    color: #FFFFFF;
}

/* hover no botão de plano não selecionado */
.plan-card:not(.plan-selected) .btn-plan-select:hover {
    background-color: #E5F9ED;
    border-color: #A7F3D0;
    transform: translateY(-1px);

}

/* ===============================
   DESTACAR PLANOS (HOVER + SELEÇÃO)
   =============================== */

/* Garantir transições suaves nos cards */
.plan-card {
    cursor: pointer;
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease,
        border-color 0.12s ease,
        background-color 0.12s ease,
        opacity 0.12s ease;
}

/* Efeito ao passar o mouse em qualquer plano */
.plan-card:hover {
    border-color: #22C55E;          /* verde */
    background-color: #F0FDF4;      /* verde bem claro */
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 22px rgba(34, 197, 94, 0.16);
}

/* Plano selecionado em evidência */
.plan-card.plan-selected {
    border: 2px solid #22C55E;
    background-color: #ECFDF3;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.22);
    transform: translateY(-3px) scale(1.03);
}

/* Outros planos ficam mais apagados quando um está selecionado */
.plan-card.plan-dimmed {
    opacity: 0.55;
    filter: grayscale(0.1);
}

/* Botão dentro do plano – transição */
.btn-plan-select {
    transition:
        background-color 0.12s ease,
        border-color 0.12s ease,
        color 0.12s ease,
        transform 0.12s ease;
}

/* Botão do plano selecionado em verde */
.plan-card.plan-selected .btn-plan-select {
    background-color: #16A34A;
    border-color: #16A34A;
    color: #FFFFFF;
}

/* Hover no botão de plano não selecionado */
.plan-card:not(.plan-selected) .btn-plan-select:hover {
    background-color: #E5F9ED;
    border-color: #A7F3D0;
    transform: translateY(-1px);
}