
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:        #e05555;
  --red-light:  #f08080;
  --red-xlight: #fce8e8;
  --red-pale:   #fff7f7;
  --white:      #ffffff;
  --gray-50:    #fafafa;
  --gray-100:   #f4f4f4;
  --gray-200:   #e8e8e8;
  --gray-400:   #b0b0b0;
  --gray-600:   #6b6b6b;
  --black:      #1e1e1e;
  --text:       #3a3a3a;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

.topbar { background: var(--red-xlight); border-bottom: 1px solid rgba(224,85,85,0.15); padding: 8px 56px; display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.topbar a { font-size: 12px; color: var(--red); text-decoration: none; font-weight: 500; transition: opacity .2s; }
.topbar a:hover { opacity: .7; }
.topbar span { color: var(--red-light); }

nav { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 0 56px; height: 76px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 12px rgba(0,0,0,0.05); }
.nav-logo img { height: 44px; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 13.5px; font-weight: 500; padding: 7px 15px; border-radius: 6px; transition: background .15s, color .15s; }
.nav-links a:hover { background: var(--red-xlight); color: var(--red); }
.nav-cta { background: var(--red) !important; color: white !important; border-radius: 6px !important; font-weight: 600 !important; }
.nav-cta:hover { background: #c94444 !important; }

.hero { position: relative; display: grid; grid-template-columns: 1fr 340px; min-height: 520px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/hero-bg.jpg'); background-size: cover; background-position: center 30%; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,8,8,0.80) 0%, rgba(20,8,8,0.65) 55%, rgba(20,8,8,0.40) 100%); }
.hero-left { padding: 80px 60px 80px 56px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.hero-chip { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.35); color: white; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 24px; width: fit-content; backdrop-filter: blur(8px); }
.hero-chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #f5a0a0; display: block; }
.hero h1 { font-family: 'Lora', serif; font-size: clamp(34px, 3.8vw, 52px); color: white; line-height: 1.12; margin-bottom: 18px; text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.hero h1 em { font-style: italic; color: #f5a0a0; }
.hero-sub { color: rgba(255,255,255,0.9); font-size: 15.5px; line-height: 1.75; max-width: 460px; margin-bottom: 36px; font-weight: 300; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-red { background: var(--red); color: white; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 13.5px; text-decoration: none; transition: background .2s, transform .15s; display: inline-block; }
.btn-red:hover { background: #c94444; transform: translateY(-2px); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.55); color: white; padding: 12px 28px; border-radius: 6px; font-weight: 500; font-size: 13.5px; text-decoration: none; background: rgba(255,255,255,0.08); backdrop-filter: blur(8px); transition: border-color .2s, background .2s; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.18); }

.hero-right { background: rgba(255,255,255,0.93); backdrop-filter: blur(14px); border-left: 1px solid rgba(255,255,255,0.2); display: flex; flex-direction: column; justify-content: center; padding: 48px 40px; position: relative; z-index: 1; }
.hero-stat { padding: 20px 0; border-bottom: 1px solid var(--gray-100); }
.hero-stat:last-child { border-bottom: none; }
.hero-stat-num { font-family: 'Lora', serif; font-size: 44px; line-height: 1; color: var(--red); }
.hero-stat-label { font-size: 11px; color: var(--gray-400); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 5px; }

.accesos { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 0 56px; display: flex; overflow-x: auto; }
.acceso { display: flex; align-items: center; gap: 8px; padding: 15px 24px; border-right: 1px solid var(--gray-200); text-decoration: none; color: var(--gray-600); font-size: 12.5px; font-weight: 500; white-space: nowrap; flex-shrink: 0; transition: color .15s, background .15s; }
.acceso:hover { color: var(--red); background: var(--red-pale); }
.acceso .i { font-size: 15px; }

.s { padding: 72px 56px; }
.s-light { background: var(--gray-50); }
.s-pale  { background: var(--red-pale); }

.s-hdr { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 10px; }
.s-title { font-family: 'Lora', serif; font-size: clamp(22px, 2.4vw, 30px); color: var(--black); }
.s-title em { color: var(--red); font-style: normal; }
.s-more { font-size: 13px; color: var(--red); text-decoration: none; font-weight: 500; }
.s-more:hover { text-decoration: underline; }

.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.who-text p { font-size: 14.5px; color: var(--gray-600); line-height: 1.85; font-weight: 300; margin-bottom: 16px; }
.who-text strong { color: var(--red); font-weight: 600; }
.who-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: white; border: 1px solid var(--gray-200); border-left: 3px solid var(--red-light); border-radius: 0 8px 8px 0; padding: 24px; }
.info-card h3 { font-family: 'Lora', serif; font-size: 16px; color: var(--black); margin-bottom: 8px; }
.info-card p { font-size: 13.5px; color: var(--gray-600); line-height: 1.7; font-weight: 300; }

.prog-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.prog-card { background: white; border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; transition: box-shadow .25s, transform .25s; }
.prog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.prog-icon { background: var(--red-xlight); padding: 28px 24px 18px; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.prog-body { padding: 18px 18px 22px; }
.prog-body h3 { font-family: 'Lora', serif; font-size: 15.5px; color: var(--black); margin-bottom: 7px; }
.prog-body p { font-size: 13px; color: var(--gray-600); line-height: 1.65; font-weight: 300; }

.news-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; }
.news-main { background: white; border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; transition: box-shadow .2s; }
.news-main:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.news-img { background: linear-gradient(135deg, var(--red-xlight) 0%, #fff0ee 100%); height: 180px; display: flex; align-items: center; justify-content: center; font-size: 56px; }
.news-body { padding: 22px; }
.tag { display: inline-block; background: var(--red-xlight); color: var(--red); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 9px; }
.news-body h3 { font-family: 'Lora', serif; font-size: 17px; color: var(--black); line-height: 1.35; margin-bottom: 9px; }
.news-body p { font-size: 13px; color: var(--gray-600); line-height: 1.65; font-weight: 300; }
.news-date { font-size: 11.5px; color: var(--gray-400); margin-top: 12px; }
.news-col { display: flex; flex-direction: column; gap: 14px; }
.news-card { background: white; border: 1px solid var(--gray-200); border-radius: 8px; padding: 16px 18px; flex: 1; transition: border-color .2s, box-shadow .2s; }
.news-card:hover { border-color: var(--red-light); box-shadow: 0 3px 12px rgba(0,0,0,0.06); }
.news-card h4 { font-family: 'Lora', serif; font-size: 14.5px; color: var(--black); line-height: 1.35; margin: 7px 0 7px; }
.news-card p { font-size: 12.5px; color: var(--gray-600); line-height: 1.6; font-weight: 300; }

.agenda { display: flex; flex-direction: column; gap: 10px; }
.ag-item { display: flex; align-items: center; gap: 20px; background: white; border: 1px solid var(--gray-200); border-radius: 8px; padding: 16px 20px; text-decoration: none; color: var(--text); transition: border-color .2s, box-shadow .2s; }
.ag-item:hover { border-color: var(--red-light); box-shadow: 0 3px 12px rgba(224,85,85,0.08); }
.ag-date { background: var(--red); color: white; width: 52px; height: 52px; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.ag-date-n { font-family: 'Lora', serif; font-size: 22px; line-height: 1; }
.ag-date-m { font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase; opacity: .88; }
.ag-info { flex: 1; }
.ag-info h4 { font-weight: 600; font-size: 14px; color: var(--black); margin-bottom: 3px; }
.ag-info p { font-size: 12.5px; color: var(--gray-600); font-weight: 300; }
.ag-pill { background: var(--red-xlight); color: var(--red); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; white-space: nowrap; }

.faq-section { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 22px 0; }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-q { font-family: 'Lora', serif; font-size: 17px; color: var(--black); margin-bottom: 10px; display: flex; gap: 14px; align-items: flex-start; }
.faq-q::before { content: 'P:'; color: var(--red); font-weight: 700; font-size: 13px; margin-top: 3px; flex-shrink: 0; font-family: 'Inter', sans-serif; }
.faq-a { font-size: 14px; color: var(--gray-600); line-height: 1.78; font-weight: 300; padding-left: 28px; }

.donde-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.donde-col h3 { font-family: 'Lora', serif; font-size: 19px; color: var(--black); margin-bottom: 12px; display: flex; align-items: center; gap: 9px; }
.donde-col p { font-size: 14px; color: var(--gray-600); font-weight: 300; line-height: 1.75; margin-bottom: 12px; }
.donde-col ul { list-style: none; }
.donde-col ul li { padding: 9px 0; border-bottom: 1px solid var(--gray-200); font-size: 13.5px; color: var(--gray-600); font-weight: 300; display: flex; gap: 10px; align-items: center; }
.donde-col ul li::before { content: '›'; color: var(--red); font-size: 15px; font-weight: 700; flex-shrink: 0; }

.colab-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

/* ── CLUB DE AMIGOS BANNER ── */
.club-banner {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
  background: linear-gradient(135deg, #2a1818 0%, #4a1a1a 100%);
  border-radius: 14px; padding: 36px 40px;
  margin-bottom: 28px; text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(224,85,85,0.25);
  position: relative; overflow: hidden;
}
.club-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,85,85,0.15) 0%, transparent 70%);
}
.club-banner:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(224,85,85,0.18); }
.club-banner-pill {
  display: inline-block; background: var(--red); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.club-banner-left h3 { font-family: 'Lora', serif; font-size: 24px; color: white; margin-bottom: 10px; }
.club-banner-left p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; font-weight: 300; max-width: 480px; }
.club-banner-left p strong { color: rgba(255,255,255,0.95); font-weight: 600; }
.club-banner-cta {
  display: inline-block; margin-top: 18px;
  background: var(--red); color: white;
  padding: 11px 24px; border-radius: 6px;
  font-size: 13.5px; font-weight: 600;
  transition: background .2s;
}
.club-banner:hover .club-banner-cta { background: #c94444; }
.club-banner-right { display: flex; flex-direction: column; gap: 20px; flex-shrink: 0; }
.club-stat { display: flex; align-items: center; gap: 12px; color: white; }
.club-stat-icon { font-size: 22px; flex-shrink: 0; }
.club-stat span { font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.4; font-weight: 300; }
.club-stat span strong { display: block; color: white; font-weight: 600; font-size: 13px; }
.colab-card { background: white; border: 1px solid var(--gray-200); border-radius: 10px; padding: 32px 28px; position: relative; overflow: hidden; transition: border-color .25s, transform .25s, box-shadow .25s; }
.colab-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red-light); border-radius: 10px 10px 0 0; }
.colab-card:hover { border-color: var(--red-light); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(224,85,85,0.09); }
.colab-pill { display: inline-block; background: var(--red-xlight); color: var(--red); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 11px; border-radius: 20px; margin-bottom: 14px; }
.colab-card h3 { font-family: 'Lora', serif; font-size: 18px; color: var(--black); margin-bottom: 10px; }
.colab-card p { font-size: 13px; color: var(--gray-600); line-height: 1.72; font-weight: 300; }

.banner { background: var(--red-xlight); border-top: 1px solid rgba(224,85,85,0.15); padding: 60px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.banner h2 { font-family: 'Lora', serif; font-size: 28px; color: var(--black); margin-bottom: 7px; }
.banner p { font-size: 14.5px; color: var(--gray-600); font-weight: 300; }

footer { background: #2a1818; padding: 56px 56px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand h2 { font-family: 'Lora', serif; font-size: 18px; color: white; margin-bottom: 11px; }
.footer-brand p, .footer-brand address { font-size: 13px; line-height: 1.78; font-weight: 300; color: rgba(255,255,255,0.45); font-style: normal; }
.footer-brand address { margin-top: 12px; }
.footer-col h4 { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.48); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: white; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 700; text-decoration: none; transition: border-color .2s, color .2s; }
.social a:hover { border-color: rgba(255,255,255,0.4); color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 11.5px; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }

@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.hero-left > * { animation: fadeUp .5s ease both; }
.hero-chip { animation-delay: 0s; }
.hero h1   { animation-delay: .07s; }
.hero-sub  { animation-delay: .14s; }
.hero-btns { animation-delay: .21s; }
