/* ===================== OPTIMIZACIONES GENERALES ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blanco: #ffffff;
  --negro: #000000;
  --celeste: #8cc9e7;
  --celeste-suave: #89d6ff;
  --gris: #cccccc;

  /* FUENTES */
  --fuente-titulos: 'Montserrat', sans-serif;
  --fuente-cuerpo: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  font-family: var(--fuente-cuerpo);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* ===================== HEADER & NAVBAR ===================== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: var(--negro);
  transition: background 0.4s ease, box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 2rem;
  position: relative;
  background: var(--negro);
}

.logo {
  display: flex;
  align-items: center;
  color: var(--celeste) !important;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1100;
  transition: all 0.3s ease;
  user-select: none;
  margin-right: auto;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-family: var(--fuente-titulos);
  font-weight: 900;
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none !important;
  border: none !important;
}

.logo-text,
.logo-text:link,
.logo-text:visited,
.logo-text:hover,
.logo-text:active,
.logo-text:focus {
  color: var(--celeste);
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none !important;
}

.logo:hover .logo-text {
  color: var(--celeste-suave) !important;
}

.logo i {
  display: inline-block !important;
  margin-right: 12px;
  font-size: 2rem;
  transition: all 0.4s ease;
  cursor: pointer;
  color: var(--celeste);
}

.logo:hover i {
  color: var(--celeste-suave);
  transform: rotate(90deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: left 0.4s ease;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--blanco);
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: var(--fuente-titulos);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: var(--celeste);
  transform: translateY(-2px);
}

/* Menú Móvil */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.menu-overlay.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

body.menu-open {
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 992px) {
  .navbar {
    height: 70px;
    padding: 0 1rem;
  }

  .logo {
    order: 1;
    font-size: 1.7rem !important;
  }

  .logo i {
    font-size: 1.9rem !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background: var(--negro);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem;
    gap: 2rem;
    transform: none;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    order: 2;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links.active .nav-item {
    animation: slideInRight 0.4s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
  }

  .nav-links.active .nav-item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-links.active .nav-item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .nav-links.active .nav-item:nth-child(3) {
    animation-delay: 0.3s;
  }

  .nav-links.active .nav-item:nth-child(4) {
    animation-delay: 0.4s;
  }

  .nav-links.active~.navbar .logo i,
  body.menu-open .logo i {
    transform: rotate(90deg);
    color: var(--celeste-suave);
  }

  .nav-link {
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 1rem 0;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.6rem !important;
  }
}

@media (max-width: 576px) {
  .nav-links {
    width: 85%;
    padding: 6rem 1.5rem;
  }
}

/* ===================== HERO MATRÍCULA ===================== */
.hero-matricula {
  position: relative;
  min-height: 600px;
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%),
    url('/images/cejas-hero.webp') center/cover;
  color: #ffffff;
  overflow: hidden;
}

.hero-matricula::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.9) 0%, rgba(50, 50, 50, 0.8) 100%);
  z-index: 1;
}

.hero-matricula .container {
  position: relative;
  z-index: 2;
}

.hero-matricula h1 {
  font-family: var(--fuente-titulos);
  font-weight: 900;
  letter-spacing: 2px;
  /* AJUSTE: Reducido para que no se corte en móvil */
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: var(--fuente-cuerpo);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #e0e0e0;
}

/* ===================== HERO CURSOS ===================== */
.hero-cursos {
  position: relative;
  min-height: 600px;
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%),
    url('/images/maquillaje-hero-cursos.webp') center/cover;
  color: #ffffff;
  overflow: hidden;
}

.hero-cursos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(50, 50, 50, 0.8));
  z-index: 1;
}

.hero-cursos .container {
  position: relative;
  z-index: 2;
}

.hero-cursos h1 {
  font-family: var(--fuente-titulos);
  font-weight: 900;
  /* AJUSTE: Reducido para móvil */
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-cursos .hero-subtitle {
  font-size: 1.2rem;
}

/* ===================== RESPONSIVE HERO ===================== */
@media (max-width: 767px) {

  .hero-matricula,
  .hero-cursos {
    min-height: 55vh;
    padding-top: 100px;
  }

  .curso-info {
    padding: 2rem 1.5rem;
  }

  .curso-titulo {
    font-size: 1.8rem;
  }

  .curso-imagen {
    min-height: 300px;
    order: -1;
  }

  .matricula-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {

  .hero-matricula h1,
  .hero-cursos h1 {
    font-size: 2.5rem;
    /* Forzamos tamaño más pequeño en celular */
  }

  .curso-info {
    padding: 1.5rem 1rem;
  }

  .matricula-card {
    padding: 1rem 1rem;
    margin: 0 10px;
  }
}

/* ===================== BLOQUE SUPERIOR (BANNER) - CORREGIDO ===================== */
.cursos-banner {
  position: relative;
  width: 100%;
  min-height: 380px;
  /* Cambiado a min-height para evitar cortes */
  background: url("/images/Motivacion.jpg") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 20px;
  margin: 0 auto 70px auto;
  z-index: 1;
}

.cursos-overlay {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-frase {
  position: relative;
  font-family: var(--fuente-titulos);
  font-weight: 900;
  color: var(--blanco);
  /* AJUSTE CLAVE: Reducimos mucho el tamaño mínimo para celulares */
  font-size: clamp(1.4rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translateY(40px);
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px;
}

@media (max-width: 576px) {
  .cursos-banner {
    min-height: 300px;
    background-attachment: scroll;
  }

  .intro-frase {
    letter-spacing: 1px;
  }
}

/* ===================== BOTONES ===================== */
.btn-responsive {
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  font-family: var(--fuente-titulos);
  border: 2px solid;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
}

.btn-primary:hover {
  background: #e0e0e0 !important;
  border-color: #e0e0e0 !important;
  transform: translateY(-2px);
}

/* ===================== SECCIÓN CURSOS ===================== */
.placeholder-imagen {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.cursos-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.curso-item {
  margin-bottom: 40px;
  border-radius: 0;
  overflow: hidden;
}

.curso-item:last-child {
  margin-bottom: 0;
}

.curso-info {
  padding: 0 !important;
  display: flex;
  align-items: center;
  min-height: 500px;
}

.curso-info>div {
  width: 100%;
}

.curso-categoria {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666666;
  margin-bottom: 1rem;
  display: block;
  font-family: var(--fuente-titulos);
}

.bg-dark .curso-categoria {
  color: #cccccc;
}

.curso-titulo {
  font-family: var(--fuente-titulos);
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.curso-descripcion {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-family: var(--fuente-cuerpo);
}

.curso-beneficios {
  margin-top: 2rem;
}

.curso-beneficios li {
  padding: 0.5rem 0;
  font-size: 1rem;
  font-family: var(--fuente-cuerpo);
  display: flex;
  align-items: flex-start;
}

.curso-beneficios i {
  margin-right: 10px;
  margin-top: 2px;
  font-size: 1.1rem;
}

.bg-white .curso-beneficios i {
  color: #000000;
}

.bg-dark .curso-beneficios i {
  color: #86CDEA;
}

.curso-imagen {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bg-white {
  background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
  color: #000000;
}

.bg-dark {
  background: linear-gradient(135deg, #000000, #1a1a1a) !important;
  color: #ffffff;
}

.curso-item:hover .curso-imagen .placeholder-imagen i {
  opacity: 1;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.curso-item:hover .curso-imagen .placeholder-imagen span {
  opacity: 1;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .curso-item {
    margin-bottom: 30px;
  }

  .curso-info {
    min-height: 400px;
    padding: 2rem 1.5rem !important;
  }

  .curso-imagen {
    min-height: 300px;
  }

  .curso-titulo {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .curso-item {
    margin-bottom: 20px;
  }

  .curso-info {
    min-height: 350px;
    padding: 1.5rem 1rem !important;
  }

  .curso-titulo {
    font-size: 1.8rem;
  }

  .placeholder-imagen i {
    font-size: 3rem;
  }
}

/* ===================== INFO CURSOS ===================== */
.info-cursos {
  background: var(--blanco);
  padding: 70px 0;
  text-align: center;
}

.info-cursos h2 {
  font-family: var(--fuente-titulos);
  font-weight: 900;
  /* AJUSTE: Más pequeño en móvil */
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--negro);
  margin-bottom: 1rem;
}

.info-cursos .lead {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.beneficios {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}

.beneficio {
  max-width: 320px;
  flex: 1 1 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.icono-beneficio {
  font-size: 3.5rem;
  color: var(--celeste);
  transition: transform 0.3s ease;
}

.beneficio:hover .icono-beneficio {
  transform: scale(1.2);
  color: var(--celeste-suave);
}

.beneficio h4 {
  font-family: var(--fuente-titulos);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--negro);
  margin: 15px 0 10px;
  text-transform: uppercase;
}

.beneficio p {
  font-size: 1rem;
  color: #555;
  font-family: var(--fuente-cuerpo);
  font-weight: 800;
}

/* ===================== SECCIÓN MATRICÚLATE AHORA ===================== */
.matricula-ahora {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.matricula-ahora::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.matricula-ahora-content {
  position: relative;
  z-index: 2;
}

.matricula-ahora h2 {
  font-family: var(--fuente-titulos);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.matricula-ahora .lead {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #e0e0e0;
  font-family: var(--fuente-cuerpo);
}

.matricula-beneficios {
  padding: 2rem 0;
}

.beneficio-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.beneficio-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.beneficio-item h5 {
  font-family: var(--fuente-titulos);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.beneficio-item p {
  font-size: 0.9rem;
  color: #cccccc;
  font-family: var(--fuente-cuerpo);
  line-height: 1.5;
}

.text-celeste {
  color: #86CDEA !important;
}

.matricula-acciones {
  margin: 2rem 0;
}

.btn-success {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  border: none;
  border-radius: 12px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--fuente-titulos);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-success:hover {
  background: linear-gradient(135deg, #128C7E, #25D366) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline-light {
  border: 2px solid #ffffff;
  border-radius: 12px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--fuente-titulos);
  transition: all 0.3s ease;
  background: transparent;
  color: #ffffff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #86CDEA;
  color: #86CDEA;
  transform: translateY(-2px);
}

.matricula-info-adicional {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.matricula-info-adicional p {
  margin-bottom: 0.5rem;
  font-family: var(--fuente-cuerpo);
}

@media (max-width: 768px) {
  .matricula-ahora h2 {
    font-size: 2.5rem !important;
    letter-spacing: 2px;
  }

  .matricula-ahora .lead {
    font-size: 1.1rem;
  }

  .beneficio-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .matricula-acciones {
    text-align: center;
  }

  .matricula-acciones .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }

  .btn-success,
  .btn-outline-light {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .matricula-ahora h2 {
    font-size: 2rem !important;
    letter-spacing: 1px;
  }

  .matricula-ahora .lead {
    font-size: 1rem;
  }

  .beneficio-item h5 {
    font-size: 1rem;
  }

  .beneficio-item p {
    font-size: 0.85rem;
  }
}

/* ===================== SECCIÓN WHATSAPP ===================== */
.matricula-whatsapp {
  background: #ffffff;
  padding: 80px 0;
}

.matricula-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 3rem;
  border: 1px solid #e0e0e0;
}

.matricula-card h2 {
  font-family: var(--fuente-titulos);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: #000000;
}

.matricula-card .lead {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 2.5rem;
  font-family: var(--fuente-cuerpo);
}

.btn-success {
  background: #25D366 !important;
  border: none;
  border-radius: 8px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--fuente-titulos);
}

.btn-success:hover {
  background: #128C7E !important;
  transform: translateY(-2px);
}

/* ===================== GALERÍA ===================== */
.galeria-trabajos {
  background: #ffffff;
  padding: 90px 0;
  text-align: center;
  color: #000;
  contain: layout paint;
}

/* AJUSTE RESPONSIVE TÍTULO GALERÍA */
.galeria-trabajos h2 {
  font-family: var(--fuente-titulos);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  position: relative;
  display: inline-block;
}

.galeria-trabajos h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--celeste);
  border-radius: 2px;
}

.galeria-trabajos .lead {
  font-size: 1.1rem;
  color: #555;
  font-family: var(--fuente-cuerpo);
  max-width: 700px;
  margin: 0 auto 55px;
  line-height: 1.6;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.25s ease-out;
  will-change: transform;
}

.galeria-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform 0.3s ease-out;
  will-change: transform;
  filter: brightness(0.98);
}

.galeria-item:hover {
  transform: translateY(-3px);
}

.galeria-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  border-radius: 16px;
}

.overlay i {
  color: var(--celeste);
  font-size: 1.8rem;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.galeria-item:hover .overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  transition: opacity 0.3s ease;
}

.lightbox.activo {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  max-width: 88%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease;
}

.cerrar {
  position: absolute;
  top: 25px;
  right: 35px;
  color: var(--celeste);
  font-size: 2.3rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cerrar:hover {
  transform: scale(1.15);
  color: var(--celeste-suave);
}

@media (max-width: 768px) {
  .galeria-item img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .galeria-item img {
    height: 200px;
  }

  .overlay i {
    font-size: 1.5rem;
  }
}

/* Footer Styles */
.footer {
  background: #1a1a1a;
  padding: 60px 0 20px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 40px;
}

.footer-section {
  padding: 0 25px;
  position: relative;
}

.footer-section:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
  font-size: 1.1rem;
  color: var(--blanco);
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--celeste);
  font-family: var(--fuente-titulos);
  font-weight: 800;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  width: 100%;
  padding: 4px 0;
  font-size: 0.95rem;
  font-family: var(--fuente-cuerpo);
  font-weight: 800;
}

.footer-section ul li a:hover {
  color: var(--celeste);
}

.contact-info,
.hours-list {
  color: #cccccc;
  font-weight: 800;
}

.contact-info li {
  margin-bottom: 12px;
  line-height: 1.4;
  font-size: 0.95rem;
}

.contact-info i {
  margin-right: 12px;
  width: 16px;
  color: var(--celeste);
  font-size: 0.9rem;
}

.promo-box {
  background: rgba(140, 201, 231, 0.08);
  padding: 20px;
  border-radius: 4px;
  border-left: 2px solid var(--celeste);
  margin-bottom: 15px;
}

.promo-box p {
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #cccccc;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.social-links a:hover {
  color: #ffffff;
  background-color: var(--celeste);
  border-color: var(--celeste);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999999;
  font-size: 0.85rem;
  font-weight: 800;
}

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

  .footer-section {
    text-align: center;
    padding: 0 20px;
  }

  .footer-section:not(:last-child)::after {
    display: none;
  }

  .footer-section:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20%;
    width: 60%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 767px) {
  .page-wrapper {
    margin: 22px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.252);
  }
}