/* Promociones.css — importa shared.css antes */

:root {
    --primary-orange: #25fc25;
    --glass-bg: rgb(252, 252, 252);
    --text-page: #1a3fab;
}

body {
    background-color: transparent;
    color: var(--text-page);
}

.container {
    max-width: 1100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* btn-back override */
.btn-back {
    align-self: flex-start;
    background: var(--glass-bg);
    color: var(--text-page);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.btn-back:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: none;
    box-shadow: none;
}

header { animation: fadeInDown 1s ease; }

.promo-badge {
    background: var(--primary-orange);
    padding: 5px 20px;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

h1 { font-size: 2.5rem; line-height: 1.2; }
h1 span { color: var(--primary-orange); }

.promo-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.image-container { width: 100%; line-height: 0; }
.promo-image     { width: 100%; height: auto; display: block; }
.promo-details   { padding: 40px; text-align: center; }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    border-bottom: 3px solid var(--primary-orange);
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    background: linear-gradient(45deg, #2623d8, #2ecf64);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform var(--transition);
    box-shadow: 0 10px 20px rgba(51, 255, 0, 0.3);
}

.cta-button:hover { transform: scale(1.05); }

/* ── FAQ ── */
.faq-section { margin-top: 50px; width: 100%; max-width: 800px; }

.faq-title {
    text-align: center;
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    background: var(--glass-bg);
    border: 1px solid rgba(25, 47, 207, 0.1);
    color: rgb(31, 19, 200);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active { background: var(--primary-orange); font-weight: bold; }

.tab-content        { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.5s ease; }

.accordion-item {
    background: rgb(14, 28, 174);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 15px 20px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #ccc;
    font-size: 0.9rem;
}

.accordion-item.open .accordion-body {
    max-height: 100px;
    padding: 10px 20px 20px;
}

.accordion-item.open span {
    transform: rotate(45deg);
    display: inline-block;
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    h1         { font-size: 1.8rem; }
    .price-tag { font-size: 2.2rem; }
}
