/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green-dark: #14532d;
    --green-main: #55f610;
    --green-bright: #55f610;
    --green-lime: #7be814;
    --green-neon: #7be814;
    --white: #ffffff;
    --off-white: #f0fdf4;
    --dark: #0f3d1e;
    --dark-overlay: rgba(15, 61, 30, 0.88);
    --shadow: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-green: 0 4px 30px rgba(85, 246, 16, 0.3);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    background: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITY ===== */
.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-label {
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
    background: var(--green-lime);
    color: var(--green-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
}

.highlight { color: var(--green-neon); }

/* ===== CTA BUTTON ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #55f610, #7be814);
    color: #0f3d1e;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 18px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 25px rgba(85, 246, 16, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(85, 246, 16, 0.6);
}

.cta-btn:active { transform: translateY(0); }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 6px 25px rgba(85, 246, 16, 0.45); }
    50% { box-shadow: 0 6px 40px rgba(85, 246, 16, 0.7); }
}

.cta-btn { animation: pulse-glow 2.5s ease-in-out infinite; }

.wa-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 61, 30, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(85, 246, 16, 0.15);
}

.header-logo {
    height: 38px;
    width: auto;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 90px 0 40px;
    background: url('DSC_0101.jpg') center center / cover no-repeat;
}
.webp .hero { background-image: url('DSC_0101.webp'); }

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,61,30,0.88) 0%, rgba(15,61,30,0.88) 60%, rgba(15,61,30,1) 100%);
    z-index: 0;
}

.hero::after { display: none; }

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin: 20px 0 16px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* ===== FILTER SECTION ===== */
.filter-section {
    position: relative;
    background: url('DSC_0057.jpg') center center / cover no-repeat;
    padding: 30px 0;
    text-align: center;
}
.webp .filter-section { background-image: url('DSC_0057.webp'); }

.filter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,61,30,1) 0%, rgba(15,61,30,0.88) 15%, rgba(15,61,30,0.88) 85%, rgba(15,61,30,1) 100%);
    z-index: 0;
}

.filter-section > .container { position: relative; z-index: 1; }

.filter-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.check-item {
    background: linear-gradient(135deg, rgba(85,246,16,0.08), rgba(123,232,20,0.04));
    border: 1px solid rgba(85, 246, 16, 0.18);
    border-radius: 16px;
    padding: 20px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-align: left;
    font-size: 0.88rem;
    line-height: 1.5;
}

.check-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--green-bright), var(--green-lime));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon svg {
    width: 20px;
    height: 20px;
    color: var(--green-dark);
}

.filter-closing {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    background: var(--dark);
    padding: 30px 0;
    text-align: center;
}

.video-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(85,246,16,0.2);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== KITS SECTION ===== */
.kits-section {
    position: relative;
    background: url('DSC_0037.jpg') center top / cover no-repeat;
    padding: 30px 0;
    scroll-margin-top: 70px;
}
.webp .kits-section { background-image: url('DSC_0037.webp'); }

.kits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,61,30,1) 0%, rgba(15,61,30,0.88) 5%, rgba(15,61,30,0.88) 95%, rgba(15,61,30,1) 100%);
    z-index: 0;
}

.kits-section > .container { position: relative; z-index: 1; }

.kits-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

.kits-intro {
    font-size: 0.85rem;
    opacity: 0.7;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.5;
}

.kit-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(85,246,16,0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    transition: border-color 0.3s;
}

.kit-card:hover {
    border-color: var(--green-lime);
}

.kit-card-header {
    margin-bottom: 16px;
}

.kit-badge {
    display: inline-block;
    background: rgba(85,246,16,0.15);
    border: 1px solid rgba(85,246,16,0.3);
    color: var(--green-neon);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.kit-badge-popular {
    background: rgba(255,193,7,0.15);
    border-color: rgba(255,193,7,0.4);
    color: #ffc107;
}

.kit-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.kit-desc {
    font-size: 0.82rem;
    opacity: 0.75;
    line-height: 1.5;
    margin-bottom: 12px;
}

.kit-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--green-neon);
    margin-bottom: 6px;
}

.kit-price-iva {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.7;
    color: var(--white);
}

.kit-capacity {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kit Specs Accordion */
.kit-specs-toggle {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(85,246,16,0.15);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: left;
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    transition: background 0.2s;
}

.kit-specs-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.toggle-icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--green-lime);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.kit-card.open .toggle-icon {
    transform: rotate(45deg);
}

.kit-specs-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.kit-specs-inner {
    padding: 16px 4px 8px;
}

.kit-specs-inner h4 {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--green-neon);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    margin-top: 12px;
}

.kit-specs-inner h4:first-child {
    margin-top: 0;
}

.kit-specs-inner ul {
    list-style: none;
    margin-bottom: 8px;
}

.kit-specs-inner li {
    font-size: 0.78rem;
    opacity: 0.8;
    line-height: 1.6;
    padding: 3px 0;
    padding-left: 18px;
    position: relative;
}

.kit-specs-inner li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--green-lime);
    font-weight: 700;
}

/* Kit CTA */
.kit-cta {
    margin-top: 16px;
    font-size: 0.92rem;
    padding: 16px 28px;
}

/* ===== SOCIAL PROOF ===== */
.proof-section {
    position: relative;
    background: url('DJI_0728.jpg') center center / cover no-repeat;
    padding: 28px 0;
}
.webp .proof-section { background-image: url('DJI_0728.webp'); }

.proof-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,61,30,1) 0%, rgba(15,61,30,0.88) 10%, rgba(15,61,30,0.88) 90%, rgba(15,61,30,1) 100%);
    z-index: 0;
}

.proof-section > .container { position: relative; z-index: 1; }

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.proof-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(85,246,16,0.15);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
}

.proof-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, var(--green-bright), var(--green-lime));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proof-icon svg {
    width: 22px;
    height: 22px;
    color: var(--green-dark);
}

.proof-item h4 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.proof-item p {
    font-size: 0.72rem;
    opacity: 0.65;
    line-height: 1.4;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--dark);
    padding: 40px 0;
}

.faq-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.faq-item {
    border: 1px solid rgba(85,246,16,0.15);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: left;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--green-lime);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question::after { content: '\2212'; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.82rem;
    line-height: 1.7;
    opacity: 0.8;
}

/* Cuando el .faq-answer contiene <p> directos (sin wrapper inner) */
.faq-answer > p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.78);
}
.faq-answer > p strong { color: #7be814; font-weight: 700; }

/* ===== FINAL CTA ===== */
.final-cta {
    position: relative;
    background: url('DJI_0728.jpg') center bottom / cover no-repeat;
    padding: 50px 0;
    text-align: center;
}
.webp .final-cta { background-image: url('DJI_0728.webp'); }

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,61,30,1) 0%, rgba(15,61,30,0.88) 10%, rgba(15,61,30,0.88) 100%);
    z-index: 0;
}

.final-cta > .container { position: relative; z-index: 1; }

.final-cta h2 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 28px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 20, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 20px;
    z-index: 999;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(85,246,16,0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta .cta-btn {
    font-size: 0.9rem;
    padding: 16px 28px;
    max-width: 360px;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a2e14;
    padding: 40px 0 80px;
    text-align: center;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--green-lime);
    margin-bottom: 8px;
}

.footer-address {
    font-size: 0.78rem;
    opacity: 0.55;
    margin-bottom: 12px;
}

.footer-legal {
    margin-bottom: 12px;
}

.footer-link {
    font-size: 0.75rem;
    opacity: 0.5;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.footer-link:hover { opacity: 0.8; }

.footer-copy {
    font-size: 0.7rem;
    opacity: 0.4;
}

/* ===== QUIZ ===== */
.quiz-section {
    background: var(--dark);
    padding: 30px 0;
    text-align: center;
    scroll-margin-top: 70px;
}

.quiz-section h2 {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quiz-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(85,246,16,0.2);
    border-radius: 16px;
    padding: 24px 20px 20px;
    text-align: left;
}

.quiz-step { display: block; }
.quiz-step-hidden { display: none; }

.quiz-back-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.45);
    font-size: .72rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    padding: 0;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .2s;
}
.quiz-back-btn:hover { color: rgba(255,255,255,0.8); }

.quiz-step-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--green-lime);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.quiz-question {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.3;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-option {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(85,246,16,0.15);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    padding: 14px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    transition: border-color 0.2s, background 0.2s;
    min-height: 56px;
}

.quiz-option:hover {
    border-color: rgba(85,246,16,0.4);
    background: rgba(85,246,16,0.06);
}

.quiz-option.selected {
    border-color: var(--green-main);
    background: rgba(85,246,16,0.1);
}

.quiz-option-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--green-bright), var(--green-lime));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quiz-option-icon svg {
    width: 20px;
    height: 20px;
    color: var(--green-dark);
}

.quiz-option-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.quiz-option-text span {
    display: block;
    font-size: 0.73rem;
    opacity: 0.6;
    line-height: 1.4;
}

.quiz-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.quiz-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background 0.3s;
}

.quiz-dot-active { background: var(--green-lime); }

/* Quiz prompt (pre-quiz) */
.kits-quiz-prompt {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(85,246,16,0.3);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0.85;
    flex-wrap: wrap;
}

.kits-quiz-prompt svg { flex-shrink: 0; color: var(--green-lime); }

.kits-quiz-prompt span { flex: 1; }

.kits-quiz-prompt-link {
    color: var(--green-lime);
    font-weight: 800;
    font-size: 0.8rem;
    white-space: nowrap;
    text-decoration: underline;
}

.kits-quiz-prompt.hidden { display: none; }

/* Results header */
.kits-results-header {
    display: none;
    background: rgba(85,246,16,0.08);
    border: 1px solid rgba(85,246,16,0.25);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.kits-results-header.visible { display: flex; }

.kits-results-text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.9;
}

.kits-results-reset {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green-lime);
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0;
}

.kit-card.kit-hidden { display: none; }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 374px) {
    .hero h1 { font-size: 1.5rem; }
    .section-label { font-size: 0.62rem; padding: 5px 12px; }
    .proof-grid { grid-template-columns: 1fr; }
    .kit-price { font-size: 1.2rem; }
}

@media (min-width: 768px) {
    .container { max-width: 720px; }
    .hero h1 { font-size: 2.4rem; }
    .proof-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
    .container { max-width: 900px; }
    .sticky-cta { display: none; }
}

/* ============================================ */
/* ===== SECCIONES ESPECÍFICAS DE CURSOS ====== */
/* ============================================ */

/* --- Social proof bar --- */
.social-proof-bar {
    background: linear-gradient(135deg, #55f610, #7be814);
    color: #0a3a0a;
    text-align: center;
    padding: 14px 16px;
    font-weight: 700;
}
.social-proof-bar p { margin: 0; font-size: .9rem; }
.social-proof-bar strong { font-weight: 900; }

/* --- Quiz subtitle --- */
.quiz-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: .88rem;
    margin: -10px 0 22px;
    line-height: 1.5;
}

/* --- Dates section --- */
.dates-section {
    padding: 60px 0;
    background: rgba(0,0,0,0.2);
}
.dates-section h2 { text-align: center; font-size: 1.75rem; margin-bottom: 32px; line-height: 1.25; }
.dates-section .section-label { display: block; text-align: center; margin: 0 auto 14px; }

.dates-sedes { display: flex; flex-direction: column; gap: 28px; }

.sede-block {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(85,246,16,0.2);
    border-radius: 16px;
    padding: 22px 18px;
}
.sede-title {
    color: #7be814;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.3;
}

.course-card {
    background: rgba(85,246,16,0.05);
    border-left: 3px solid #55f610;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
}
.course-card:last-child { margin-bottom: 0; }
.course-card.completo {
    background: rgba(255,255,255,0.03);
    border-left-color: rgba(255,255,255,0.2);
    opacity: .55;
}
.course-badge-completo {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 6px;
}
.course-date {
    font-weight: 800;
    font-size: .98rem;
    color: #fff;
    margin: 0 0 4px;
}
.course-detail {
    font-size: .8rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 8px;
    line-height: 1.4;
}
.course-prices {
    font-size: .82rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.course-prices strong { color: #7be814; font-weight: 800; }

.dates-note {
    text-align: center;
    margin-top: 24px;
    font-size: .88rem;
    color: rgba(255,255,255,0.8);
    background: rgba(85,246,16,0.06);
    border: 1px solid rgba(85,246,16,0.15);
    border-radius: 10px;
    padding: 14px;
    line-height: 1.5;
}

/* --- Modules section --- */
.modules-section { padding: 60px 0; }
.modules-section h2 { text-align: center; font-size: 1.75rem; margin-bottom: 32px; line-height: 1.25; }
.modules-section .section-label { display: block; text-align: center; margin: 0 auto 14px; }

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.module-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(85,246,16,0.15);
    border-radius: 14px;
    padding: 20px 18px;
}
.module-icon { font-size: 2rem; margin-bottom: 8px; }
.module-card h3 {
    color: #7be814;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px;
}
.module-card h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.3;
}
.module-card p {
    color: rgba(255,255,255,0.75);
    font-size: .85rem;
    line-height: 1.5;
    margin: 0;
}

.modules-note {
    text-align: center;
    margin-top: 24px;
    font-size: .9rem;
    color: rgba(255,255,255,0.85);
}
.modules-note strong { color: #7be814; }

/* --- Cert section --- */
.cert-section { padding: 60px 0; background: rgba(0,0,0,0.2); }
.cert-section h2 { text-align: center; font-size: 1.6rem; margin-bottom: 28px; line-height: 1.3; }
.cert-section .section-label { display: block; text-align: center; margin: 0 auto 14px; }

.cert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.cert-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(85,246,16,0.18);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}
.cert-icon { font-size: 2rem; margin-bottom: 8px; }
.cert-card h4 {
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    margin: 0 0 8px;
}
.cert-card p {
    color: rgba(255,255,255,0.75);
    font-size: .82rem;
    line-height: 1.5;
    margin: 0;
}

/* --- Payments section --- */
.payments-section { padding: 60px 0; }
.payments-section h2 { text-align: center; font-size: 1.6rem; margin-bottom: 28px; line-height: 1.3; }
.payments-section .section-label { display: block; text-align: center; margin: 0 auto 14px; }

.payment-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.payment-card {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(85,246,16,0.25);
    border-radius: 14px;
    padding: 22px 18px;
    position: relative;
}
.payment-badge {
    display: inline-block;
    background: linear-gradient(135deg, #55f610, #7be814);
    color: #0a3a0a;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}
.payment-card h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 8px;
}
.payment-desc {
    color: rgba(255,255,255,0.8);
    font-size: .85rem;
    line-height: 1.5;
    margin: 0 0 12px;
}
.payment-desc strong { color: #7be814; }
.payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.payment-list li {
    font-size: .85rem;
    color: rgba(255,255,255,0.85);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.payment-list li:last-child { border-bottom: none; }
.payment-list strong { color: #7be814; font-weight: 800; }

.payment-reserve {
    background: rgba(85,246,16,0.06);
    border: 1px solid rgba(85,246,16,0.2);
    border-radius: 12px;
    padding: 18px;
}
.payment-reserve h4 {
    color: #7be814;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 10px;
}
.payment-reserve p {
    color: rgba(255,255,255,0.85);
    font-size: .85rem;
    line-height: 1.5;
    margin: 0 0 8px;
}
.payment-reserve p:last-child { margin-bottom: 0; }
.payment-reserve strong { color: #7be814; }
.payment-disclaimer {
    font-size: .78rem !important;
    opacity: .75;
    font-style: italic;
}

/* --- Final CTA --- */
.final-cta {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(85,246,16,0.08));
}
.final-cta h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.2;
}
.final-cta p {
    color: rgba(255,255,255,0.85);
    font-size: .95rem;
    margin: 0;
}

/* --- Footer --- */
.site-footer {
    padding: 32px 0 80px;
    text-align: center;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(85,246,16,0.15);
}
.site-footer p {
    margin: 0 0 6px;
    font-size: .85rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}
.site-footer p strong { color: #7be814; font-size: 1rem; }
.footer-copy {
    margin-top: 12px !important;
    font-size: .75rem !important;
    color: rgba(255,255,255,0.5) !important;
}

/* --- Responsive desktop --- */
@media (min-width: 768px) {
    .modules-grid { grid-template-columns: 1fr 1fr; }
    .cert-grid    { grid-template-columns: 1fr 1fr 1fr; }
    .payment-cards { grid-template-columns: 1fr 1fr; }
    .dates-sedes  { gap: 24px; }
    .dates-section h2,
    .modules-section h2,
    .cert-section h2,
    .payments-section h2 { font-size: 2rem; }
}

/* ============================================================
   PROMO INAUGURACIÓN CABA — bloque agregado
   ============================================================ */

/* Banner urgencia removido — header restaurado */

/* ===== BANNER URGENCIA ===== */
.urgency-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(135deg, #ff6b1a 0%, #ffb020 100%);
    color: #1a0f00;
    padding: 10px 14px;
    box-shadow: 0 2px 14px rgba(255, 107, 26, 0.35);
}
.urgency-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.urgency-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff1f1f;
    box-shadow: 0 0 0 0 rgba(255, 31, 31, 0.7);
    animation: urgencyPulse 1.6s infinite;
    flex-shrink: 0;
}
@keyframes urgencyPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 31, 31, 0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(255, 31, 31, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 31, 31, 0); }
}
.urgency-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    flex: 1;
    min-width: 160px;
}
.urgency-text strong {
    font-size: 0.88rem;
    font-weight: 900;
    color: #1a0f00;
}
.urgency-sub {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.85;
    color: #1a0f00;
}
.urgency-countdown {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    border-radius: 6px;
    padding: 4px 10px;
    min-width: 38px;
}
.cd-num {
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
}
.cd-lbl {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.85;
    margin-top: 2px;
}
.urgency-expired { background: linear-gradient(135deg, #14532d, #1a6b3a); color: #fff; }
.urgency-expired .urgency-text strong,
.urgency-expired .urgency-sub { color: #fff; }
.urgency-expired .urgency-countdown { display: none; }


/* ===== HERO PRICE STRIP ===== */
.hero-price-strip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 22px;
    padding: 10px 18px;
    background: rgba(255, 176, 32, 0.12);
    border: 1.5px solid rgba(255, 176, 32, 0.45);
    border-radius: 14px;
    font-size: 0.95rem;
}
.hero-price-old {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
    font-size: 0.95rem;
    font-weight: 600;
}
.hero-price-arrow { color: var(--green-lime); font-weight: 900; }
.hero-price-new {
    color: var(--green-neon);
    font-weight: 900;
    font-size: 1.55rem;
    line-height: 1;
}
.hero-price-tag {
    width: 100%;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.8;
    margin-top: 2px;
}

/* ===== SECCIÓN PROMO ===== */
.promo-section {
    padding: 56px 0;
    background:
        radial-gradient(ellipse at top, rgba(255, 176, 32, 0.10), transparent 60%),
        linear-gradient(180deg, #0f3d1e 0%, #0a2e14 100%);
    border-top: 1px solid rgba(255, 176, 32, 0.20);
    border-bottom: 1px solid rgba(255, 176, 32, 0.20);
}
.promo-section .section-label {
    background: #ffb020;
    color: #1a0f00;
}
.promo-section h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 12px;
    line-height: 1.25;
}
.promo-subtitle {
    text-align: center;
    opacity: 0.88;
    max-width: 540px;
    margin: 0 auto 26px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.promo-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.promo-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(85, 246, 16, 0.35);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: left;
}
.promo-card-featured {
    border: 2px solid #ffb020;
    background: linear-gradient(180deg, rgba(255, 176, 32, 0.07), rgba(255, 176, 32, 0.02));
    box-shadow: 0 6px 30px rgba(255, 176, 32, 0.18);
}
.promo-card-badge {
    display: inline-block;
    background: rgba(85, 246, 16, 0.18);
    color: var(--green-neon);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.promo-card-badge-best {
    background: #ffb020;
    color: #1a0f00;
}
.promo-old-price {
    font-size: 0.82rem;
    opacity: 0.65;
    margin-bottom: 4px;
}
.promo-old-price s { color: #ff8a8a; }
.promo-new-price {
    font-size: 2.2rem;
    color: var(--green-neon);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}
.promo-new-price span {
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 600;
    margin-left: 6px;
}
.promo-savings {
    color: #ffb020;
    font-weight: 800;
    font-size: 0.92rem;
    margin-bottom: 14px;
}
.promo-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
}
.promo-includes li {
    font-size: 0.84rem;
    padding: 5px 0;
    opacity: 0.92;
}
.promo-includes-aside {
    font-size: 0.72rem !important;
    opacity: 0.6 !important;
    font-style: italic;
    margin-top: 6px !important;
    padding-top: 8px !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}
.promo-deadline {
    background: rgba(255, 176, 32, 0.10);
    border: 1.5px dashed #ffb020;
    border-radius: 12px;
    padding: 16px 18px;
    text-align: center;
    margin: 24px 0 22px;
}
.promo-deadline strong { color: #ffb020; font-size: 1rem; }
.promo-deadline-sub {
    font-size: 0.78rem;
    opacity: 0.78;
    margin-top: 4px;
}
.promo-section .cta-btn { margin: 0 auto; display: flex; }

@media (min-width: 768px) {
    .promo-section h2 { font-size: 2rem; }
    .promo-cards { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ===== COURSE CARDS PROMO (sección Fechas) ===== */
.course-card-promo {
    border-left: 4px solid #ffb020 !important;
    position: relative;
}
.course-badge-promo {
    display: inline-block;
    background: #ffb020;
    color: #1a0f00;
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.course-prices-promo {
    margin-top: 6px;
    line-height: 1.5;
}
.course-prices-promo .price-old s {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    margin-right: 8px;
}
.course-prices-promo .price-new {
    color: var(--green-neon);
    font-weight: 900;
    font-size: 1.05rem;
}
.course-duo-hint {
    font-size: 0.78rem;
    color: #ffb020;
    margin-top: 6px;
    font-weight: 600;
}
.course-card-deadline {
    font-size: 0.74rem;
    color: #ff8a4a;
    margin-top: 8px;
    font-weight: 700;
    font-style: italic;
}
.sede-tag-new {
    display: inline-block;
    background: #ffb020;
    color: #1a0f00;
    font-size: 0.55rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 7px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

/* ===== QUIZ — Tag de Promo en opciones (Paso 1 CABA y Paso 2 fechas CABA) ===== */
.quiz-option-has-promo-tag {
    position: relative;
    border-color: rgba(255, 176, 32, 0.55) !important;
}
.quiz-option-has-promo-tag::after {
    content: '🎉 PROMO -$160k';
    position: absolute;
    top: -9px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b1a, #ffb020);
    color: #1a0f00;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    padding: 3px 9px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 176, 32, 0.45);
    pointer-events: none;
    white-space: nowrap;
    z-index: 2;
}
/* Variante: badge con ambas promos (individual + 2x1) */
.quiz-option-promo-doble {
    position: relative;
    border-color: rgba(255, 176, 32, 0.55) !important;
}
.quiz-option-promo-doble::after {
    content: '🎉 PROMO -$160k';
    position: absolute;
    top: -9px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b1a, #ffb020);
    color: #1a0f00;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.4px;
    padding: 3px 9px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 176, 32, 0.45);
    pointer-events: none;
    white-space: nowrap;
    z-index: 2;
}
@media (max-width: 380px) {
    .quiz-option-promo-doble::after {
        font-size: 0.55rem;
        padding: 3px 7px;
    }
}
.quiz-option-has-promo-tag .quiz-price-old {
    text-decoration: line-through;
    opacity: 0.55;
    margin-right: 5px;
}
.quiz-option-has-promo-tag .quiz-price-new {
    color: #ffb020;
    font-weight: 800;
}
/* Precios en step 2 dinámico cuando la opción tiene clase promo-doble */
.quiz-option-promo-doble .quiz-price-new {
    color: #ffb020;
    font-weight: 800;
    opacity: 1;
}

/* ===== QUIZ OPCIÓN PROMO DÚO (botón destacado en step 3) ===== */
.quiz-option-promo {
    background: linear-gradient(135deg, rgba(255, 176, 32, 0.18), rgba(255, 107, 26, 0.10)) !important;
    border: 2px solid #ffb020 !important;
    box-shadow: 0 4px 18px rgba(255, 176, 32, 0.18);
    position: relative;
}
.quiz-option-promo::before {
    content: '🎉 PROMO -$260k c/u';
    position: absolute;
    top: -10px;
    right: 14px;
    background: linear-gradient(135deg, #ff6b1a, #ffb020);
    color: #1a0f00;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.4px;
    padding: 3px 9px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 176, 32, 0.45);
    white-space: nowrap;
}
.quiz-option-promo .quiz-option-icon {
    background: #ffb020 !important;
    color: #1a0f00 !important;
}
.quiz-option-promo strong { color: #fff; }
.quiz-option-promo span {
    color: #ffb020;
    font-weight: 600;
}

/* ===== STICKY CTA REFORMATEADO ===== */
.sticky-cta {
    flex-direction: column;
    gap: 2px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #14532d 0%, #0f3d1e 100%);
    color: #fff;
    align-items: center;
}
.sticky-cta-strong {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--green-neon);
    line-height: 1.1;
}
.sticky-cta-light {
    font-size: 0.72rem;
    opacity: 0.88;
    line-height: 1.1;
}
.sticky-cta-arrow {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--green-neon);
    font-weight: 900;
}

