/* ── FRANPE BASE CSS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --azul:        #3B52C4;
  --azul-oscuro: #2A3A9C;
  --azul-claro:  #6B82D6;
  --azul-palido: #EEF1FB;
  --negro:       #1A1A2E;
  --blanco:      #FFFFFF;
  --gris-texto:  #4A4A6A;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--negro); background: var(--blanco); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(26,26,46,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(107,130,214,0.2);
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.8);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--azul-claro); }
.nav-links a.active { color: white; border-bottom: 2px solid var(--azul-claro); padding-bottom: 2px; }
.nav-cta { background: var(--azul); color: white !important; padding: 10px 22px; border-radius: 4px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--azul-oscuro) !important; }

/* PAGE HERO (subpages) */
.page-hero {
  padding-top: 72px; min-height: 320px;
  display: flex; align-items: flex-end;
  background: linear-gradient(160deg, var(--negro) 0%, var(--azul-oscuro) 100%);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.page-hero-inner {
  position: relative; z-index: 2;
  padding: 48px 64px; color: white;
}
.page-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--azul-claro); margin-bottom: 12px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15;
}

/* CONTENT */
.page-content { max-width: 1200px; margin: 0 auto; padding: 80px 64px; }
.eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--azul); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--negro); line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 0.95rem; color: var(--gris-texto); line-height: 1.75; max-width: 600px; }

/* PLACEHOLDER GRID */
.placeholder-grid { display: grid; gap: 24px; margin-top: 48px; }
.placeholder-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.placeholder-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.placeholder-card {
  background: var(--azul-palido); border: 2px dashed #C5CEED;
  aspect-ratio: 4/3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.placeholder-card .ph-icon { font-size: 2.8rem; opacity: 0.4; }
.placeholder-card .ph-text { font-size: 0.8rem; font-weight: 500; color: #8E9DC8; letter-spacing: 0.04em; text-align: center; }

/* INFO GRID */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 64px; }
.info-text p { font-size: 0.95rem; color: var(--gris-texto); line-height: 1.75; margin-bottom: 16px; }

/* FEATURES LIST */
.features { list-style: none; margin: 28px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.features li { font-size: 0.9rem; color: var(--gris-texto); display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.features li::before { content: ''; width: 7px; height: 7px; background: var(--azul); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

/* CTA BLOCK */
.cta-block {
  background: var(--azul-palido); border-left: 4px solid var(--azul);
  padding: 32px 40px; margin-top: 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-block p { font-size: 1rem; font-weight: 500; color: var(--negro); }
.cta-block span { font-size: 0.85rem; color: var(--gris-texto); }

/* CALL BOX */
.call-box {
  background: var(--negro); color: white; padding: 48px;
  text-align: center; margin-top: 48px;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
}
.call-box .call-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--azul-claro); margin-bottom: 12px; }
.call-box .call-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; margin-bottom: 8px; }
.call-box .call-sub { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 28px; }

/* HORARIO TABLE */
.horario-table { width: 100%; border-collapse: collapse; margin-top: 28px; }
.horario-table tr { border-bottom: 1px solid #E0E5F5; }
.horario-table td { padding: 12px 0; font-size: 0.9rem; color: var(--gris-texto); }
.horario-table td:first-child { font-weight: 600; color: var(--negro); width: 160px; }
.horario-table tr:last-child { border-bottom: none; }

/* MAP */
.map-wrap { margin-top: 48px; border: 1px solid #E0E5F5; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 64px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--negro); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 1px solid #D0D8F0; border-radius: 2px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--negro);
  transition: border-color 0.2s; outline: none; background: var(--blanco);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--azul); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* BUTTONS */
.btn-primary {
  background: var(--azul); color: white; padding: 14px 32px; border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s; display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--azul-oscuro); transform: translateY(-2px); }
.btn-outline-dark {
  border: 2px solid var(--azul); color: var(--azul); padding: 12px 28px; border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem; display: inline-block; transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--azul); color: white; }

/* CONTACTO STRIP */
.contacto-strip {
  background: var(--azul); padding: 64px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.contacto-texto .eyebrow-white { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.contacto-titulo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: white; }
.contacto-datos { display: flex; gap: 48px; flex-wrap: wrap; }
.dato { display: flex; flex-direction: column; gap: 4px; }
.dato-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.dato-valor { font-size: 0.95rem; font-weight: 500; color: white; line-height: 1.5; }
.contacto-btn { background: white; color: var(--azul); padding: 16px 36px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.9rem; white-space: nowrap; transition: transform 0.2s; flex-shrink: 0; }
.contacto-btn:hover { transform: translateY(-2px); }

/* FOOTER */
footer { background: #0E0F1E; padding: 36px 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer img { height: 38px; opacity: 0.75; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }

/* WHATSAPP */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none;
  font-size: 1.6rem; transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
