/* ─── HERO (Específico de la página principal) ─── */
#hero { position: relative; height: 100svh; min-height: 600px; overflow: hidden; display: flex; align-items: center; justify-content: center; padding-top: 90px; }
#hero-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: .4; pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse at center bottom, rgba(227,66,66,.12) 0%, rgba(0,0,0,0) 60%), linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 40%, rgba(0,0,0,.75) 100%); }
.hero-inner { position: relative; z-index: 2; text-align: center; padding: 0 1.5rem; max-width: 900px; }
.hero-eyebrow { font-size: clamp(0.85rem, 2vw, 1.05rem); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: 1.25rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); opacity: 0; animation: fadeUp .6s .4s forwards; }
.hero-title { font-size: clamp(3rem, 9vw, 7rem); font-weight: 900; line-height: .95; text-transform: uppercase; letter-spacing: -.02em; color: #fff; opacity: 0; animation: fadeUp .7s .55s forwards; }
.hero-title em { color: var(--red); font-style: normal; display: block; }
.hero-tagline { margin-top: 1.5rem; font-size: clamp(0.95rem, 2vw, 1.15rem); font-weight: 300; color: rgba(255,255,255,.9); letter-spacing: .02em; line-height: 1.7; text-shadow: 0 2px 12px rgba(0,0,0,0.6); opacity: 0; animation: fadeUp .7s .7s forwards; }
.hero-cta-hint { margin-top: 2.5rem; font-size: clamp(0.75rem, 1.5vw, 0.85rem); font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); opacity: 0; animation: fadeUp .7s 1.1s forwards; }
.hero-scroll-arrow { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem; opacity: 0; animation: fadeIn 1s 1.4s forwards; }
.hero-scroll-arrow span { font-size: 0.75rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.arrow-anim { animation: bounce 2s 2s infinite; }

/* ─── PATH SECTION (Caminos Divididos) ─── */
#paths { display: grid; grid-template-columns: 1fr 1fr; min-height: 100svh; }
@media(max-width:767px) { #paths { grid-template-columns: 1fr; min-height: auto; } }
.path-card { position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 3.5rem 2.5rem; min-height: 60svh; text-decoration: none; cursor: pointer; transition: flex-grow .5s cubic-bezier(.4,0,.2,1); }
@media(min-width:768px) { .path-card { min-height: 100svh; } #paths:has(.path-card:hover) .path-card { flex: 0 0 35%; } #paths:has(.path-card:hover) .path-card:hover { flex: 0 0 65%; } }
.path-bg { position: absolute; inset: 0; z-index: 0; transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .4s; }
.path-card:hover .path-bg { transform: scale(1.04); }
.path-organizers .path-bg { background: linear-gradient(135deg, #0d0d0d 0%, #1a0505 100%); }
.path-students .path-bg { background: linear-gradient(135deg, #0a0a14 0%, #140a0a 100%); }
.path-photo { position: absolute; inset: 0; z-index: 1; background-size: cover; background-position: center 15%; opacity: .18; transition: opacity .5s; }
.path-card:hover .path-photo { opacity: .28; }
.path-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.1) 100%); transition: background .4s; }
.path-card:hover .path-overlay { background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%); }
.path-divider { position: absolute; top: 10%; bottom: 10%; left: 50%; width: 1px; background: rgba(255,255,255,.1); z-index: 10; pointer-events: none; transform: translateX(-50%); }
@media(max-width:767px) { .path-divider { display: none; } }
.path-content { position: relative; z-index: 3; }
.path-number { font-size: 0.8rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: .75rem; display: flex; align-items: center; gap: .75rem; }
.path-number::after { content: ''; flex: 1; max-width: 32px; height: 1px; background: var(--red); }
.path-label { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; color: #fff; line-height: .95; }
.path-label em { color: var(--red); font-style: normal; display: block; }
.path-desc { margin-top: 1rem; font-size: clamp(0.9rem, 1.5vw, 1.05rem); font-weight: 300; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 320px; max-height: 0; overflow: hidden; transition: max-height .5s ease, opacity .4s; opacity: 0; }
.path-card:hover .path-desc { max-height: 140px; opacity: 1; }
@media(max-width:767px) { .path-desc { max-height: 120px; opacity: 1; } }
.path-arrow { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: .6rem; font-size: 0.8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #fff; transition: gap .3s, color .2s; }
.path-card:hover .path-arrow { gap: 1rem; color: var(--red); }
.path-arrow svg { width: 16px; height: 16px; transition: transform .3s; }
.path-card:hover .path-arrow svg { transform: translateX(4px); }
.path-corner { position: absolute; top: 2rem; right: 2rem; z-index: 3; width: 32px; height: 32px; border-top: 1.5px solid rgba(227,66,66,.4); border-right: 1.5px solid rgba(227,66,66,.4); opacity: 0; transition: opacity .4s; }
.path-card:hover .path-corner { opacity: 1; }

/* ─── ABOUT STRIP ─── */
#about-strip { background: #FAFAFA; color: #0A0A0A; padding: 6rem 2rem; }
.about-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; gap: 4rem; align-items: center; }
@media(min-width:768px) { .about-strip-inner { grid-template-columns: 1fr 1fr; } }
.about-img-wrap { position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; }
.about-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 6px; display: block; border: 2px solid var(--red); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.about-text-tag { font-size: clamp(0.75rem, 1.5vw, 0.85rem); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: .6rem; }
.about-text-h { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: #0A0A0A; }
.about-text-h em { color: var(--red); font-style: italic; }
.redbar { width: 36px; height: 3px; background: var(--red); margin: 1.1rem 0; }
.about-text-body { font-size: clamp(0.95rem, 1.5vw, 1.1rem); font-weight: 300; line-height: 1.9; color: #444; }
.cert-badge { border: 1px solid rgba(0,0,0,0.04); border-radius: 14px; padding: 0.75rem 1.25rem; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.03); display: flex; align-items: center; gap: .6rem; width: 100%; justify-content: flex-start; text-align: left; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease; cursor: default; }
@media (min-width: 768px) { .cert-badge { width: auto; } }
.cert-badge:hover { transform: translateY(-4px); border-color: rgba(0,0,0,0.08); box-shadow: 0 16px 32px -8px rgba(0,0,0,0.12), 0 8px 16px -4px rgba(0,0,0,0.06); }
.cert-title { font-size: 0.85rem; font-weight: 700; color: #0A0A0A; line-height: 1.2; }
.cert-sub { font-size: 0.7rem; font-weight: 400; color: #6B6B6B; margin-top: 2px; }
.stats-row { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #EFEFEF; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--red); line-height: 1; }
.stat-lbl { font-size: 0.75rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: #6B6B6B; margin-top: .4rem; }

/* ─── OFFERINGS ─── */
#offerings { background: #0A0A0A; padding: 6rem 2rem; }
.offerings-inner { max-width: 1200px; margin: 0 auto; }
.offerings-header { text-align: center; margin-bottom: 4rem; }
.off-tag { font-size: clamp(0.75rem, 1.5vw, 0.85rem); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: .6rem; }
.off-h { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -.02em; color: #fff; }
.off-h em { color: var(--red); font-style: italic; }
.offerings-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; max-width: 1000px; margin: 0 auto; }
@media(min-width:640px) { .offerings-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .offerings-grid { grid-template-columns: repeat(3, 1fr); } }
.off-card { border: 1px solid rgba(255,255,255,0.04); border-radius: 24px; padding: 2.25rem 2rem; background: #111; position: relative; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.2); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease; }
.off-card:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-8px); box-shadow: 0 32px 64px -12px rgba(0,0,0,0.6), 0 16px 32px -8px rgba(0,0,0,0.4); }
.off-card-num { font-size: 0.8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(227,66,66,.5); margin-bottom: 1.25rem; }
.off-card-icon { width: 44px; height: 44px; border-radius: 8px; background: rgba(227,66,66,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.off-card-icon svg { width: 22px; height: 22px; color: var(--red); }
.off-card-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .6rem; }
.off-card-desc { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.75; }
.off-card-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.5rem; font-size: 0.8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--red); text-decoration: none; transition: gap .2s; }
.off-card-link:hover { gap: .7rem; }
.off-card-link svg { width: 14px; height: 14px; }

/* ─── TESTIMONIALS ─── */
#testimonials { background: #111; padding: 6rem 2rem; }
.test-inner { max-width: 1200px; margin: 0 auto; }
.test-header { text-align: center; margin-bottom: 4rem; }
.test-tag { font-size: clamp(0.75rem, 1.5vw, 0.85rem); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: .6rem; }
.test-h { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -.02em; color: #fff; }
.test-h em { color: var(--red); font-style: italic; }
.test-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media(min-width:768px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }
.test-card { border: 1px solid rgba(255,255,255,0.04); border-radius: 24px; padding: 2.25rem 2rem; background: #0d0d0d; position: relative; box-shadow: 0 8px 24px rgba(0,0,0,0.2); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease; }
.test-card:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-8px); box-shadow: 0 32px 64px -12px rgba(0,0,0,0.6), 0 16px 32px -8px rgba(0,0,0,0.4); }
.test-quote { font-size: 3.5rem; line-height: 1; color: var(--red); opacity: .15; font-family: Georgia, serif; position: absolute; top: 1rem; left: 1.5rem; }
.test-badge { display: inline-flex; align-items: center; justify-content: center; gap: 0.3rem; margin-bottom: 1.25rem; font-size: 0.7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .75rem; border-radius: 4px; }
.badge-student { background: rgba(227,66,66,.15); color: var(--red); border: 1px solid rgba(227,66,66,.2); }
.badge-organizer { background: rgba(212, 175, 55, 0.12); color: #D4AF37; border: 1px solid rgba(212, 175, 55, 0.25); }
.test-text { font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.7); position: relative; z-index: 1; }
.test-stars { color: var(--red); font-size: 1rem; letter-spacing: 2px; margin-bottom: .75rem; }
.test-author { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.07); }
.test-name { font-size: 0.9rem; font-weight: 600; color: #fff; }
.test-role { font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,.5); }

/* ─── INSTAGRAM CTA DIVIDIDO ─── */
#ig-cta { padding: 0; display: flex; align-items: stretch; background: var(--red); }
.ig-col-left { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 5rem 2rem; position: relative; text-align: center; }
.ig-col-right { flex: 1; background-image: url('https://github.com/carlitostarr93/NonoyCarlosWebsite/blob/main/img/urbandedo.jpg?raw=true'); background-size: cover; background-position: top center; min-height: 400px; }
.ig-label { font-size: clamp(0.75rem, 1.5vw, 0.85rem); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: .75rem; }
.ig-h { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: #fff; letter-spacing: -.02em; }
.ig-sub { margin-top: .75rem; font-size: clamp(0.95rem, 1.5vw, 1.1rem); font-weight: 300; color: rgba(255,255,255,.9); line-height: 1.7; }
.ig-btn { display: inline-flex; align-items: center; gap: .75rem; margin-top: 2.5rem; background: #fff; color: var(--red); font-size: 0.85rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 1rem 2.5rem; border-radius: 4px; text-decoration: none; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.ig-btn:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4), 0 8px 16px -4px rgba(0,0,0,0.2); }
.ig-btn svg { width: 20px; height: 20px; }
@media (max-width: 768px) { #ig-cta { flex-direction: column; } .ig-col-left { width: 100%; } .ig-col-right { display: none; } }
