/* =====================================================
   PediaKids - Optimized Liquid Glass Design System
   ===================================================== */
:root {
  --blue-deep: #0a4d8c;
  --blue-primary: #1a6fc4;
  --blue-bright: #2b8aed;
  --blue-light: #5ba3f5;
  --blue-soft: #e8f3fc;
  --blue-glow: rgba(43, 138, 237, 0.28);
  --white: #ffffff;
  --off-white: #f7fafc;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.3s var(--ease-out);
  --max-width: 1140px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit; font-size: inherit;
  border: none; outline: none; background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.35rem); }
.lead { font-size: 1.05rem; color: var(--gray-500); max-width: 520px; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--blue-primary); margin-bottom: 0.6rem;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Lighter liquid blobs - performance */
.liquid-blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
  opacity: 0.07;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  animation: liquidMorph 18s ease-in-out infinite;
}
.liquid-blob--1 { width: 340px; height: 340px; top: -60px; right: -80px; }
.liquid-blob--2 { width: 260px; height: 260px; bottom: 8%; left: -60px; animation-delay: -6s; background: linear-gradient(225deg, var(--blue-light), var(--blue-primary)); }
@keyframes liquidMorph {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(4deg); }
}

/* Glass - reduced blur for performance */
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 20px rgba(10, 77, 140, 0.07);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 77, 140, 0.12);
}

/* ========== HEADER ========== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h); z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(10, 77, 140, 0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.logo-link { display: flex; align-items: center; gap: 0.6rem; z-index: 10; }
.logo-img {
  width: 42px; height: 42px; object-fit: contain; border-radius: 10px;
  transition: transform 0.3s;
}
.logo-link:hover .logo-img { transform: scale(1.06); }
.logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  letter-spacing: -0.03em; color: var(--gray-900);
}
.logo-text span { color: black; }

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-list { display: flex; align-items: center; gap: 1.4rem; }
.nav-link {
  font-weight: 500; font-size: 0.92rem; color: var(--gray-700);
  position: relative; padding: 0.3rem 0;
}
.nav-link::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--blue-primary); border-radius: 2px; transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--blue-deep); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  color: white; font-weight: 600; font-size: 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 12px var(--blue-glow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px var(--blue-glow); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 26px; cursor: pointer; z-index: 10;
}
.nav-toggle span {
  display: block; height: 2.5px; background: var(--gray-900); border-radius: 2px; transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: 0; right: -100%; width: min(300px, 82vw); height: 100vh;
    background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center; padding: 2rem; gap: 2rem;
    transition: right 0.4s var(--ease-out); box-shadow: -8px 0 30px rgba(0,0,0,0.06);
  }
  .nav.open { right: 0; }
  .nav-list { flex-direction: column; gap: 1.25rem; text-align: center; }
  .nav-link { font-size: 1.1rem; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem; font-weight: 600; font-size: 0.9rem;
  border-radius: var(--radius-full); cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s; position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  color: white; box-shadow: 0 4px 16px var(--blue-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px var(--blue-glow); }
.btn-glass {
  background: rgba(255, 255, 255, 0.22); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35); color: white;
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.35); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--blue-primary); color: var(--blue-primary); background: transparent;
}
.btn-outline:hover { background: var(--blue-primary); color: white; transform: translateY(-2px); }
.btn-whatsapp {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep)); color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35); }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; padding-top: var(--header-h);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: fill; object-position: center; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,77,140,0.82) 0%, rgba(26,111,196,0.7) 45%, rgba(43,138,237,0.58) 100%);
}
.hero-content {
  position: relative; z-index: 2; color: white; max-width: 620px; padding: 2.5rem 0 3rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.9rem; background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 500; margin-bottom: 1.2rem;
}
.hero h1 { color: white; margin-bottom: 1rem; }
.hero h1 span {
  display: block; font-weight: 500; font-size: 0.52em; opacity: 0.9; margin-top: 0.25rem;
}
.hero .lead { color: rgba(255,255,255,0.9); margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* Stats always in a row */
.hero-stats {
  display: flex; flex-direction: row; flex-wrap: nowrap;
  gap: 1.5rem; margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.stat-item { flex: 1; min-width: 0; }
.stat-item strong {
  display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
}
.stat-item span { font-size: 0.78rem; opacity: 0.85; white-space: nowrap; }

@media (max-width: 480px) {
  .hero-stats { gap: 0.9rem; }
  .stat-item strong { font-size: 1.25rem; }
  .stat-item span { font-size: 0.7rem; }
}

/* Signature diamond - lighter */
.hero-signature {
  position: absolute; right: 7%; top: 50%; transform: translateY(-50%);
  z-index: 2; width: 240px; height: 240px;
  animation: floatGentle 7s ease-in-out infinite;
}
.hero-signature .diamond {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.28); border-radius: 28%;
  transform: rotate(45deg); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.hero-signature .diamond-inner {
  transform: rotate(-45deg); text-align: center; color: white;
}
.hero-signature .diamond-inner i { font-size: 2.4rem; margin-bottom: 0.4rem; opacity: 0.9; }
.hero-signature .diamond-inner p {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; line-height: 1.25;
}
@media (max-width: 1100px) { .hero-signature { display: none; } }

@keyframes floatGentle {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(-54%); }
}

/* ========== CAROUSEL (index only) ========== */
.carousel-section { overflow: hidden; }
.carousel-track-wrap {
  overflow: hidden; margin-top: 2.25rem; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.carousel-track {
  display: flex; gap: 1.25rem; width: max-content;
  animation: carouselScroll 28s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-track .spec-card {
  width: 260px; flex-shrink: 0; padding: 1.6rem 1.4rem;
}
@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.spec-icon {
  width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-soft), white); border-radius: 14px;
  margin-bottom: 1rem; font-size: 1.2rem; color: var(--blue-primary);
  box-shadow: 0 3px 10px rgba(26,111,196,0.1);
}
.spec-card h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.spec-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; }

/* Organic shapes */
.spec-card:nth-child(odd) { border-radius: 22px 38px 22px 38px; }
.spec-card:nth-child(even) { border-radius: 38px 22px 38px 22px; }

/* ========== ABOUT TEASER ========== */
.about-teaser {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.about-visual {
  position: relative; height: 380px; border-radius: var(--radius-xl); overflow: hidden;
}
.about-visual .video-panel {
  position: absolute; inset: 0; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid rgba(26,111,196,0.12);
  box-shadow: 0 12px 36px rgba(10,77,140,0.1);
}
.about-visual .video-panel video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.about-visual .float-card {
  position: absolute; padding: 0.85rem 1.15rem; background: white;
  border-radius: var(--radius-md); box-shadow: 0 8px 24px rgba(10,77,140,0.1);
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 600; z-index: 2;
}
.about-visual .float-card i { color: var(--blue-primary); font-size: 1.05rem; }
.about-visual .float-1 { bottom: 10%; left: -6%; }
.about-visual .float-2 { top: 8%; right: -4%; }

.about-content .section-label { margin-bottom: 0.6rem; }
.about-content h2 { margin-bottom: 1rem; }
.about-content .lead { margin-bottom: 1.4rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.6rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem; }
.feature-item i { color: var(--blue-primary); font-size: 1rem; margin-top: 0.15rem; }

@media (max-width: 900px) {
  .about-teaser { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { height: 280px; order: -1; }
}

/* ========== DIFFERENTIALS ========== */
.differentials {
  background: linear-gradient(180deg, var(--blue-soft) 0%, var(--off-white) 100%);
}
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.25rem;
}
.diff-card { text-align: center; padding: 1.8rem 1.4rem; }
.diff-card .num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  color: rgba(26,111,196,0.1); line-height: 1; margin-bottom: 0.35rem;
}
.diff-card h3 { margin-bottom: 0.45rem; }
.diff-card p { font-size: 0.88rem; color: var(--gray-500); }
@media (max-width: 800px) { .diff-grid { grid-template-columns: 1fr; } }

/* ========== FAQ ========== */
.faq-section { background: white; }
.faq-list {
  max-width: 720px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 0.7rem;
}
.faq-item {
  background: var(--gray-50); border-radius: var(--radius-md);
  border: 1px solid var(--gray-200); overflow: hidden; transition: box-shadow 0.25s;
}
.faq-item.active {
  box-shadow: 0 6px 18px rgba(10,77,140,0.07); border-color: rgba(26,111,196,0.18);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  padding: 1.05rem 1.3rem; text-align: left; font-weight: 600; font-size: 0.95rem;
  color: var(--gray-900); cursor: pointer;
}
.faq-question:hover { color: var(--blue-primary); }
.faq-question i { color: var(--blue-primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-answer-inner { padding: 0 1.3rem 1.15rem; color: var(--gray-500); font-size: 0.9rem; }

/* ========== CTA ========== */
.cta-band {
  position: relative; padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-primary) 50%, var(--blue-bright));
  overflow: hidden; text-align: center; color: white;
}
.cta-band h2 { color: white; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.cta-band p { max-width: 460px; margin: 0 auto 1.6rem; opacity: 0.9; position: relative; z-index: 1; }
.cta-band .hero-actions { justify-content: center; position: relative; z-index: 1; }

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-900); color: rgba(255,255,255,0.72); padding: 3.2rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem;
  padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-text { color: white; margin-bottom: 0.8rem; display: inline-block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.55; margin-bottom: 1.2rem; max-width: 260px; }
.social-links { display: flex; gap: 0.6rem; }
.social-links a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07); border-radius: 10px; color: white; font-size: 0.95rem;
  transition: all 0.25s;
}
.social-links a:hover { background: var(--blue-primary); transform: translateY(-2px); }
.footer-col h4 { color: white; font-size: 0.95rem; margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue-light); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; margin-bottom: 0.7rem;
}
.footer-contact i { color: var(--blue-light); margin-top: 0.15rem; width: 16px; }
.footer-bottom {
  padding: 1.2rem 0; display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 0.8rem; font-size: 0.82rem;
}
.footer-bottom a { color: var(--blue-light); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }



/* ========== INNER PAGES ========== */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 3.2rem) 0 3.2rem;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-primary));
  color: white; overflow: hidden; text-align: center;
}
.page-hero h1 { color: white; margin-bottom: 0.6rem; position: relative; z-index: 1; }
.page-hero p { max-width: 480px; margin: 0 auto; opacity: 0.9; position: relative; z-index: 1; }
.breadcrumb {
  display: flex; justify-content: center; gap: 0.4rem; font-size: 0.85rem;
  margin-bottom: 1rem; opacity: 0.85; position: relative; z-index: 1;
}
.breadcrumb a:hover { text-decoration: underline; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; margin-top: 0.5rem; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card { display: flex; gap: 1rem; padding: 1.25rem; align-items: flex-start; }
.info-card .icon-wrap {
  width: 44px; height: 44px; min-width: 44px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-soft), white); border-radius: 12px;
  color: var(--blue-primary); font-size: 1.05rem;
}
.info-card h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.info-card p, .info-card a { font-size: 0.88rem; color: var(--gray-500); }
.info-card a:hover { color: var(--blue-primary); }
.contact-form-wrap { padding: 1.9rem; }
.contact-form-wrap h3 { margin-bottom: 0.4rem; }
.contact-form-wrap > p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1.4rem; }
.form-group { margin-bottom: 1.05rem; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.35rem; color: var(--gray-700);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem; background: var(--gray-50);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue-primary); box-shadow: 0 0 0 3px rgba(26,111,196,0.1); background: white;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Specialties full page */
.specs-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.4rem; margin-top: 1.5rem;
}
.spec-full-card { padding: 1.6rem; }
.spec-full-card .icon {
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--blue-primary), var(--blue-deep)); color: white;
  border-radius: 16px; font-size: 1.3rem; margin-bottom: 1rem;
  box-shadow: 0 6px 16px var(--blue-glow); transition: transform 0.3s;
}
.spec-full-card:hover .icon { transform: scale(1.08) rotate(-5deg); }
.spec-full-card h3 { margin-bottom: 0.45rem; }
.spec-full-card p { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 1rem; }
.spec-full-card .link {
  display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 600; font-size: 0.85rem; color: var(--blue-primary);
}
.spec-full-card:nth-child(odd) { border-radius: 24px 40px 24px 40px; }
.spec-full-card:nth-child(even) { border-radius: 40px 24px 40px 24px; }

/* About page */
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
.mission-card { padding: 1.6rem 1.3rem; text-align: center; }
.mission-card i { font-size: 1.7rem; color: var(--blue-primary); margin-bottom: 0.8rem; }
.mission-card h3 { margin-bottom: 0.45rem; }
.mission-card p { font-size: 0.88rem; color: var(--gray-500); }
@media (max-width: 800px) { .mission-grid { grid-template-columns: 1fr; } }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.8rem; }
.hours-table th, .hours-table td {
  padding: 0.75rem 0.9rem; text-align: left; border-bottom: 1px solid var(--gray-200);
}
.hours-table th { font-weight: 600; color: var(--gray-700); }

.convenios-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.convenio-tag {
  padding: 0.4rem 0.9rem; background: var(--blue-soft); color: var(--blue-deep);
  border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 500;
  border: 1px solid rgba(26,111,196,0.12); transition: all 0.2s;
}
.convenio-tag:hover { background: var(--blue-primary); color: white; }

.map-embed {
  border-radius: var(--radius-lg); overflow: hidden; height: 280px; margin-top: 1.5rem;
  border: 1px solid var(--gray-200); background: var(--gray-100);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Reveal - lighter */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 4px; }

@media (max-width: 600px) {
  .section { padding: 3rem 0; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}

/* Attention notes (red) for important schedule info */
.attention-note {
  margin-top: 0.65rem;
  padding: 0.45rem 0.7rem;
  background: rgba(220, 38, 38, 0.08);
  border-left: 3px solid #dc2626;
  border-radius: 0 8px 8px 0;
  color: #b91c1c;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
}
.attention-note i {
  margin-right: 0.3rem;
  color: #dc2626;
}


/* Call button lives in header only – no floating call */

/* ========== GITENZO – Virtual Assistant ========== */
#gitenzo-root { font-family: var(--font-body); }

.gitenzo-toggle {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 1001;
  height: 56px;
  padding: 0 1.1rem 0 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  color: white;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 22px var(--blue-glow);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  border: none;
  font-weight: 600;
}
.gitenzo-toggle i { font-size: 1.25rem; }
.gitenzo-toggle-label { font-size: 0.82rem; letter-spacing: 0.01em; }
.gitenzo-toggle:hover { transform: scale(1.04); box-shadow: 0 8px 28px var(--blue-glow); }

.gitenzo-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: #dc2626;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.gitenzo-panel {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 1001;
  width: min(380px, calc(100vw - 28px));
  height: min(540px, 72vh);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(10,77,140,0.2);
  border: 1px solid rgba(255,255,255,0.65);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, width 0.35s, height 0.35s, border-radius 0.35s, bottom 0.35s, right 0.35s;
  overflow: hidden;
}
.gitenzo-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Fullscreen mode */
.gitenzo-panel.fullscreen {
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  max-width: none;
  border-radius: 0;
  z-index: 10050;
}
body.gitenzo-fs-active { overflow: hidden; }

.gitenzo-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-primary));
  color: white;
  flex-shrink: 0;
}
.gitenzo-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.gitenzo-header-text { flex: 1; min-width: 0; }
.gitenzo-header-text strong { display: block; font-size: 0.95rem; }
.gitenzo-header-text span { font-size: 0.7rem; opacity: 0.88; }

.gitenzo-fs, .gitenzo-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.gitenzo-fs:hover, .gitenzo-close:hover { background: rgba(255,255,255,0.3); }

.gitenzo-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--gray-50);
}
.gitenzo-panel.fullscreen .gitenzo-messages {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.gitenzo-msg { display: flex; max-width: 92%; }
.gitenzo-msg.bot { align-self: flex-start; }
.gitenzo-msg.user { align-self: flex-end; }
.gitenzo-msg .bubble {
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.55;
}
.gitenzo-msg.bot .bubble {
  background: white;
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
  border-bottom-left-radius: 4px;
}
.gitenzo-msg.user .bubble {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  color: white;
  border-bottom-right-radius: 4px;
}
.gitenzo-msg.bot .bubble a { color: var(--blue-primary); font-weight: 600; text-decoration: underline; }
.gitenzo-msg.bot .bubble strong { color: var(--blue-deep); }

.gitenzo-msg.typing .bubble {
  display: flex; gap: 5px; align-items: center; padding: 0.85rem 1.1rem;
}
.gitenzo-msg.typing span {
  width: 7px; height: 7px; background: var(--gray-300); border-radius: 50%;
  animation: gitenzoDot 1.2s infinite ease-in-out;
}
.gitenzo-msg.typing span:nth-child(2) { animation-delay: 0.15s; }
.gitenzo-msg.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes gitenzoDot {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
  40% { transform: scale(1.2); opacity: 1; }
}

.gitenzo-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-top: 1px solid var(--gray-200);
  background: white;
  flex-shrink: 0;
}
.gitenzo-panel.fullscreen .gitenzo-quick {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}
.gitenzo-quick button {
  padding: 0.32rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 500;
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-radius: 999px;
  border: 1px solid rgba(26,111,196,0.15);
  cursor: pointer;
  transition: all 0.2s;
}
.gitenzo-quick button:hover { background: var(--blue-primary); color: white; }

.gitenzo-form {
  display: flex;
  gap: 0.45rem;
  padding: 0.75rem 0.9rem;
  border-top: 1px solid var(--gray-200);
  background: white;
  flex-shrink: 0;
}
.gitenzo-panel.fullscreen .gitenzo-form {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
.gitenzo-form input {
  flex: 1;
  padding: 0.65rem 0.95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.9rem;
  background: var(--gray-50);
}
.gitenzo-form input:focus { border-color: var(--blue-primary); background: white; outline: none; }
.gitenzo-form button {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  border: none;
  flex-shrink: 0;
}
.gitenzo-form button:hover { transform: scale(1.06); }

@media (max-width: 480px) {
  .gitenzo-toggle { right: 14px; bottom: 16px; padding: 0 0.9rem 0 0.75rem; }
  .gitenzo-toggle-label { font-size: 0.75rem; }
  .gitenzo-panel {
    bottom: 80px; right: 12px;
    width: calc(100vw - 24px);
    height: min(500px, 68vh);
  }
}
