html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: #050505;
    color: #fff;
    font-family: Inter, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top right, rgba(216,162,77,.12), transparent 25%), radial-gradient(circle at bottom left, rgba(216,162,77,.08), transparent 20%), linear-gradient(135deg,#050505 0%,#0d0d0d 50%,#161616 100%);
}

.plans-page {
    min-height: 100vh;
    overflow-x: hidden;
}

/* HERO */

.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 30px 80px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(216,162,77,.12);
    border: 1px solid rgba(216,162,77,.2);
    color: #d8a24d;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-content h1 {
    margin: 0;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-description {
    margin-top: 25px;
    max-width: 650px;
    color: rgba(255,255,255,.75);
    font-size: 18px;
    line-height: 1.9;
}

.cta-button {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 32px;
    border-radius: 18px;
    background: linear-gradient(135deg,#d8a24d,#ffcb73);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: .25s;
}

    .cta-button:hover {
        transform: translateY(-3px);
    }

/* PRICE CARD */

.hero-image {
    display: flex;
    justify-content: center;
}

.price-card {
    width: 100%;
    max-width: 500px;
    padding: 50px;
    border-radius: 36px;
    text-align: center;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(216,162,77,.15);
    backdrop-filter: blur(20px);
}

.price-label {
    display: inline-block;
    color: #d8a24d;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
}

    .price small {
        font-size: 28px;
        margin-top: 16px;
        color: #ffcb73;
    }

    .price strong {
        font-size: 110px;
        line-height: 1;
        color: #ffcb73;
        font-weight: 900;
    }

.price-period {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,.65);
}

.price-card p {
    margin-top: 20px;
    color: rgba(255,255,255,.75);
}

/* FEATURES */

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.feature-card {
    padding: 35px;
    border-radius: 28px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    transition: .3s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
        border-color: rgba(216,162,77,.25);
    }

    .feature-card i {
        font-size: 36px;
        color: #d8a24d;
        margin-bottom: 18px;
    }

    .feature-card h3 {
        margin: 0 0 12px;
        font-size: 24px;
    }

    .feature-card p {
        margin: 0;
        color: rgba(255,255,255,.72);
        line-height: 1.8;
    }

/* INCLUDED */

.included-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

    .included-section h2 {
        text-align: center;
        font-size: 42px;
        margin-bottom: 40px;
    }

.included-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

    .included-grid div {
        padding: 20px;
        border-radius: 18px;
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(255,255,255,.06);
    }

    .included-grid i {
        color: #d8a24d;
        margin-right: 10px;
    }

/* FAQ */

.faq-section {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

    .faq-section h2 {
        text-align: center;
        margin-bottom: 35px;
    }

    .faq-section details {
        margin-bottom: 16px;
        border-radius: 20px;
        padding: 22px;
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(255,255,255,.06);
    }

    .faq-section summary {
        cursor: pointer;
        font-weight: 700;
    }

    .faq-section p {
        margin-top: 15px;
        color: rgba(255,255,255,.75);
    }

/* CTA FINAL */

.final-cta {
    text-align: center;
    padding: 100px 30px;
}

    .final-cta h2 {
        font-size: 56px;
        max-width: 900px;
        margin: 0 auto 20px;
    }

    .final-cta p {
        color: rgba(255,255,255,.75);
        margin-bottom: 30px;
    }

/* RESPONSIVO */

@media(max-width:992px) {

     
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
        grid-template-columns: repeat(2,1fr);
    }

     
}

@media(max-width:768px) {

     
    .hero-section {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 15px;
    }

    .price-card {
        padding: 35px 25px;
    }

    .price strong {
        font-size: 80px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .included-section h2,
    .final-cta h2 {
        font-size: 32px;
    }

     
}

@media(max-width:480px) {

     
    .hero-content h1 {
        font-size: 32px;
    }

    .price strong {
        font-size: 64px;
    }

    .price small {
        font-size: 22px;
    }

    .price-card {
        padding: 30px 20px;
    }

}
