/* DEFINIÇÃO DE CORES E ESTILOS DOS PLANOS */

.plans {
    background: linear-gradient(180deg, #1a5fa8 0%, #e8eef6 18%);
    padding: 64px 32px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.plans__card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

.plans__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.plans__card-header {
    width: 100%;
    background: #e0197d;
    padding: 22px 16px 20px;
    text-align: center;
}

.plans__card-title {
    color: #ffffff;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1;
}

.plans__card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px;
    width: 100%;
}

.plans__benefits-label {
    font-size: 13px;
    color: #aaaaaa;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.plans__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: center;
}

.plans__benefits-list li {
    font-size: 15px;
    font-weight: 600;
    color: #e0197d;
    line-height: 1.8;
}

.plans__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 24px;
    line-height: 1;
    margin-top: auto;
}

.plans__price-currency {
    font-size: 18px;
    font-weight: 700;
    color: #1a5fa8;
    margin-top: 10px;
    margin-right: 4px;
}

.plans__price-value {
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 900;
    color: #1a5fa8;
    letter-spacing: -0.03em;
    line-height: 1;
}

.plans__price-cents {
    font-size: 20px;
    font-weight: 700;
    color: #1a5fa8;
    margin-top: 8px;
}

.plans__cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 240px;
    background: #e0197d;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.plans__cta:hover,
.plans__cta:focus-visible {
    background: #c0146a;
    transform: scale(1.04);
    outline: none;
}

@media (max-width: 1024px) {
    .plans {
        padding: 64px 24px;
    }

    .plans__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
    }
}

@media (max-width: 600px) {
    .plans {
        padding: 48px 16px;
        background: linear-gradient(180deg, #1a5fa8 0%, #1a5fa8 180px, #e8eef6 180px, #e8eef6 100%);
    }

    .plans__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 32px;
    }

    .plans__card-body {
        padding: 24px 16px;
    }
}