/* ============================================================
   GUÍA MEETSITE — Directorio de academias de idiomas
   Marca: #83cbce (light) · #0F7A7E (dark) · #0a5e62 (accent)
   Fuentes: Fraunces (display) · Inter (body) · Poppins (UI)
   ============================================================ */

:root {
  --brand-light: #83cbce;
  --brand-dark: #0F7A7E;
  --brand-accent: #0a5e62;
  --brand-soft: #e8f5f5;
  --ink: #1a2826;
  --ink-soft: #4a5d5b;
  --ink-muted: #7a8c8a;
  --bg: #fafbfb;
  --bg-soft: #f3f7f7;
  --border: #e1e8e8;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(15, 122, 126, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 122, 126, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 122, 126, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; font-family: 'Poppins', sans-serif; font-weight: 600; }

p { margin-bottom: 1em; }

a { color: var(--brand-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-accent); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.logo:hover { color: var(--ink); }
.logo-mark {
  color: var(--brand-dark);
  font-size: 1.6rem;
}
.logo-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--brand-dark); }
.main-nav a.active { color: var(--brand-dark); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-light);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  body.menu-open .main-nav { display: flex; }
  .menu-toggle { display: flex; }
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 0.85rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}
.breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin-left: 6px;
  color: var(--ink-muted);
}
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs li[aria-current] { color: var(--ink-muted); }

/* ============================================================
   MAIN
   ============================================================ */
.site-main {
  min-height: calc(100vh - 72px - 400px);
}

/* ============================================================
   HOME — LANDING "PRÓXIMAMENTE"
   ============================================================ */
.coming-soon {
  padding: 80px 20px 120px;
  text-align: center;
  background: linear-gradient(180deg, var(--brand-soft) 0%, var(--bg) 60%);
  position: relative;
  overflow: hidden;
}

.coming-soon::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--brand-light) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
}
.coming-soon::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--brand-light) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.badge-coming {
  display: inline-block;
  background: var(--brand-dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.coming-soon h1 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon p.lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
  line-height: 1.7;
}

.coming-soon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.feature-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-card .icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--brand-dark);
  color: var(--white);
  border-color: var(--brand-dark);
}
.btn-primary:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}
.btn-secondary:hover {
  background: var(--brand-dark);
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 24px;
  margin-top: 80px;
}
.site-footer h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-footer .logo {
  color: var(--white);
  margin-bottom: 16px;
}
.site-footer .logo-mark {
  color: var(--brand-light);
}
.site-footer p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer-meta {
  margin-top: 16px;
  font-size: 0.85rem;
}
.footer-meta a {
  color: var(--brand-light);
  font-weight: 500;
}
.footer-meta a:hover {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

.site-footer ul {
  list-style: none;
}
.site-footer ul li {
  margin-bottom: 8px;
}
.site-footer ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color .2s;
}
.site-footer ul a:hover {
  color: var(--brand-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom p {
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.5;
}
.footer-disclaimer a {
  color: var(--brand-light);
}
