/* ============================================
   Pricing Page Styles - Beleza Marcada
   ============================================ */

.pricing-section {
    padding: calc(var(--space-lg) + 80px) 0 var(--space-2xl);
    background: linear-gradient(160deg, #07101f 0%, #0a1628 60%, #0c1a30 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    min-height: 100vh;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 75%, rgba(254, 61, 106, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 25%, rgba(25, 184, 176, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    position: relative;
    z-index: 2;
}

.pricing-header h1 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.pricing-header h1 .highlight {
    color: var(--white);
    background: linear-gradient(180deg, transparent 60%, rgba(254, 61, 106, 0.3) 60%);
    padding: 0 6px;
    border-radius: 4px;
    display: inline;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: var(--space-md);
}

/* Pricing Toggle Switch */
.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.toggle-label {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--duration-fast) var(--ease-smooth);
    cursor: pointer;
}

.toggle-label.active {
    color: var(--white);
}

.toggle-label-discount {
    color: var(--teal-accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: .3s var(--ease-smooth);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: var(--pink-primary);
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: var(--shadow-pink);
}

input:checked + .slider {
    background-color: rgba(25, 184, 176, 0.1);
    border-color: rgba(25, 184, 176, 0.25);
}

input:checked + .slider:before {
    transform: translateX(28px);
    background-color: var(--teal-accent);
    box-shadow: var(--shadow-teal);
}

/* Pricing Grid & Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md) var(--space-md);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--duration-normal) var(--ease-smooth),
                background var(--duration-normal) var(--ease-smooth),
                border-color var(--duration-normal) var(--ease-smooth),
                box-shadow var(--duration-normal) var(--ease-smooth);
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

/* Featured (Popular) Card */
.pricing-card.featured {
    background: rgba(254, 61, 106, 0.04);
    border-color: rgba(254, 61, 106, 0.2);
}

.pricing-card.featured:hover {
    background: rgba(254, 61, 106, 0.06);
    border-color: rgba(254, 61, 106, 0.35);
    box-shadow: 0 12px 36px rgba(254, 61, 106, 0.1);
}

.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--pink-primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-pink);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    text-align: center;
}

.plan-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    text-align: center;
    min-height: 48px;
}

.plan-price-box {
    margin-bottom: var(--space-md);
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.plan-price {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.plan-period {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.plan-annual-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.plan-annual-note .saving {
    color: var(--teal-accent);
    font-weight: 600;
}

/* Feature checklist */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.plan-features svg {
    width: 20px;
    height: 20px;
    stroke: var(--teal-accent);
    stroke-width: 2.5;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card.featured .plan-features svg {
    stroke: var(--pink-light);
}

.plan-btn {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-xl) 0;
    background: var(--navy-dark);
    color: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.faq-header h2 {
    color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md) var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.faq-item h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: var(--space-md);
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}
