
/* ============================================
   EDENT - Consultorio Odontológico
   Stylesheet
   ============================================ */

:root {
  --primary: #0a3d5c;
  --primary-dark: #062a40;
  --primary-light: #14628f;
  --accent: #f4c430;
  --accent-hover: #e0b320;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  object-fit: cover;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
}

.nav a:hover {
  color: var(--primary);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: var(--gray-900);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 320px;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ============================================
   SERVICIOS
   ============================================ */

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   PUBLICIDAD / FEATURE
   ============================================ */

.feature-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.feature-content p {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--gray-600);
}

.feature-list li svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   NOSOTROS
   ============================================ */

.about-section {
  padding: 80px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.stat-item h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-item span {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.about-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.team-member {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-member img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.team-name {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
}

/* ============================================
   CONTACTO
   ============================================ */

.contact-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 80px 0;
}

.contact-section .section-header h2,
.contact-section .section-header p {
  color: var(--white);
}

.contact-section .section-header p {
  opacity: 0.85;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-card svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card span {
  font-size: 0.9rem;
  opacity: 0.85;
  word-break: break-word;
  overflow-wrap: anywhere;
  display: block;
  line-height: 1.4;
}

.contact-card a:hover span {
  opacity: 1;
  text-decoration: underline;
}

.social-section {
  text-align: center;
}

.social-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.social-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 48px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
}

.footer-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-800);
  font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .hero-inner,
  .feature-inner,
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    width: 240px;
  }

  .about-stats {
    justify-content: center;
  }

  .feature-content {
    order: -1;
  }

  .feature-list li {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-header h2,
  .feature-content h2,
  .about-content h2 {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GALERÍA
   ============================================ */

.gallery-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ============================================
   TESTIMONIAL
   ============================================ */

.testimonial-section {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--primary);
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}

.testimonial-card cite {
  font-size: 0.9rem;
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
}

/* ============================================
   ANTES Y DESPUÉS
   ============================================ */

.before-after-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.before-after-item {
  text-align: center;
}

.before-after-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--white);
  padding: 10px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  margin-bottom: 16px;
}

.before-after-item img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* ============================================
   BANNER PROMO
   ============================================ */

.banner-section {
  padding: 40px 0;
}

.banner-section .container {
  max-width: 1200px;
}

.banner-section img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   MAPA
   ============================================ */

.map-section {
  padding: 80px 0;
}

.map-img {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* ============================================
   SERVICE CARDS WITH IMAGES
   ============================================ */

.service-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-card {
  overflow: hidden;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card blockquote {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-card span {
    font-size: 0.85rem;
  }
}


/* Header CTA fix */
.header-inner .btn-primary {
  color: var(--white) !important;
}
.header-inner .btn-primary svg {
  stroke: var(--white);
}

@media (max-width: 700px) {
  .about-team {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .team-member img {
    width: 80px;
    height: 80px;
    margin: 0 auto 8px;
  }

  .team-name {
    font-size: 0.85rem;
  }

  .team-role {
    font-size: 0.75rem;
  }
}

/* ============================================
   CITAS / AGENDAR CITA
   ============================================ */

.citas-section {
  padding: 120px 0 80px;
  background: var(--gray-50);
  min-height: 100vh;
}

.citas-header {
  text-align: center;
  margin-bottom: 40px;
}

.citas-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.citas-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
}

.citas-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 32px;
}

.form-group h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-field input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-900);
  transition: var(--transition);
  font-family: inherit;
}

.form-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 61, 92, 0.1);
}

.form-field input::placeholder {
  color: var(--gray-400);
}

.form-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  margin-top: 6px;
  font-weight: 500;
}

.horario-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.horario-info svg {
  flex-shrink: 0;
  color: var(--primary);
}

.horas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
}

.horas-vacio {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray-400);
  padding: 24px;
  font-size: 0.95rem;
}

.hora-btn {
  padding: 10px 8px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.hora-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(10, 61, 92, 0.05);
}

.hora-btn.selected {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.hora-seleccionada {
  text-align: center;
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--gray-500);
  font-weight: 500;
}

.hora-seleccionada.ok {
  color: var(--primary);
}

.citas-resumen {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.citas-resumen h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.citas-resumen p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.citas-resumen p strong {
  color: var(--gray-800);
}

.form-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.form-buttons .btn {
  min-width: 180px;
  justify-content: center;
}

.form-buttons .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Responsive citas */
@media (max-width: 600px) {
  .citas-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .citas-header h1 {
    font-size: 1.7rem;
  }

  .horas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-buttons {
    flex-direction: column;
  }

  .form-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   HORARIO DE ATENCIÓN
   ============================================ */

.horario-section {
  background: var(--white);
  padding: 80px 0;
}

.horario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.horario-card {
  text-align: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}

.horario-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.horario-card.destacado {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-color: var(--primary);
}

.horario-card.destacado .horario-hora {
  color: var(--accent);
}

.horario-card.destacado .horario-nota {
  color: rgba(255, 255, 255, 0.8);
}

.horario-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.horario-card.destacado .horario-icon {
  background: var(--accent);
}

.horario-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.horario-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.horario-card.destacado h3 {
  color: var(--white);
}

.horario-hora {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.horario-nota {
  font-size: 0.85rem;
  color: var(--gray-500);
}

@media (max-width: 700px) {
  .horario-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* ============================================
   INFO BAR (Horario + Teléfono)
   ============================================ */

.info-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.info-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.info-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}

.info-bar svg {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .info-bar-inner {
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }
}

/* ============================================
   FOOTER HORARIO
   ============================================ */

.footer-horario {
  text-align: center;
  padding: 16px 24px;
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  margin-bottom: 16px;
}

.footer-horario p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-400);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-horario strong {
  color: var(--white);
}

.footer-horario svg {
  color: var(--accent);
  flex-shrink: 0;
}

.banner-promo-link {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.banner-promo-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.banner-promo-link img {
  width: 100%;
  display: block;
}

