:root {
  --azul-umariana: #009ada;
  --azul-oscuro: #396eaf;
  --blanco: #ffffff;
  --transicion: 0.3s ease;
}

/* --- Reset --- */
.sidebar, .sidebar * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
}

/* --- Sidebar --- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 68px;
  height: 100vh;
  background: var(--azul-umariana);
  transition: width var(--transicion);
  overflow: hidden;
  box-shadow: 2px 0 8px rgba(0,0,0,0.15);
  z-index: 9999;
}

/* Evita que cualquier contenido externo afecte su posición */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow: hidden;
  font-family: 'Lato', sans-serif;
}

/* --- Hover expand --- */
.sidebar:hover {
  width: 250px;
}

/* --- Logo --- */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  position: relative;
  overflow: hidden;
}

.logo-small {
  width: 58px;
  height: 57px;
  position: absolute;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-large {
  width: 200px;
  height: 57px;
  position: absolute;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sidebar:hover .logo-small {
  opacity: 0;
  transform: scale(0.85);
}

.sidebar:hover .logo-large {
  opacity: 1;
  transform: scale(1);
}

/* --- Enlaces --- */
.sidebar ul {
  list-style: none;
  margin-top: 10px;
}

.sidebar ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--blanco);
  padding: 12px 19px;
  transition: background var(--transicion);
  white-space: nowrap;
}

.sidebar ul li a:hover {
  background: var(--azul-oscuro);
}

.sidebar ul li a i {
  font-size: 18px;
  width: 30px;
  text-align: center;
  color: var(--blanco);
  flex-shrink: 0;
}

.sidebar ul li a span {
  opacity: 0;
  margin-left: 8px;
  transition: opacity var(--transicion);
}

.sidebar:hover ul li a span {
  opacity: 1;
}

/* --- Submenú --- */
.submenu {
  display: none;
  flex-direction: column;
  background-color: #46c1f2;
}

.sidebar:hover .has-submenu:hover .submenu {
  display: flex;
}

.submenu a {
  font-size: 14px;
  padding: 6px 0px 6px 40px !important;
}

/* --- Móvil --- */
@media (max-width: 768px) {
  .sidebar {
    height: 100vh;
    overflow: hidden;
    width: 68px;
  }

  .sidebar:hover,
  .sidebar.active {
    width: 270px;
  }

  body {
    overflow-x: hidden !important;
  }
}

/* ======== SECCIONES ======== */
.sections {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.sections section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.7s ease, transform 0.7s ease;
  padding-left: 80px;
  box-sizing: border-box;
}

.sections section.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* ======== FONDOS SUAVES (pastel) ======== */
#inicio { background: #e8f9fb; }
#mapa-procesos { background: #f3f9fe; }
#que-es-sgc { background: #fffaf2; }
#pilares { background: #f6f2fa; }
#politica { background: #eef9f0; }
#objetivos { background: #fff5f5; }
#alcance { background: #edf3ff; }
#contenido { background: #fffdf2; }
#contacto { background: #f2fff8; }

@media (max-width: 768px) {
  .sections section {
    padding-left: 68px;
  }
}

/* ===== TÍTULOS ===== */
.sgc-header h1 {
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sgc-header h1 span {
  font-weight: 800;
  }

.sgc-header h1:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

.sgc-texto p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 15px 0 50px;
  color: #666;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .sgc-header h1 { font-size: 2rem; }
}

@media screen and (max-width: 480px) {
  .sgc-header h1 { font-size: 1.8rem; }
  .sgc-texto p { font-size: 0.95rem; }
}

/* ===== Lista de pilares ===== */
.sgc-pilares-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.sgc-pilar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .sgc-pilares-list {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .sgc-pilar { max-width: 100%; }
}

@media screen and (max-width: 480px) {
  #sgc-pilares-container,
  #objetivos-sgc-container {
    padding: 40px 15px;
  }
  .sgc-pilar h3 { font-size: 1.1rem; }
}

/* Iconos de pilares */
.sgc-pilar-icon {
  width: 100px;
  height: 100px;
  font-size: 3rem;
  margin-bottom: 15px;
  color: #00b4d8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: visible;
  transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
}

.sgc-pilar-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  animation: pillarFadeIn 1s ease forwards;
}

.sgc-pilar-icon:hover {
  transform: scale(1.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
  filter: brightness(1.15);
}

@keyframes pillarFadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== Página de Inicio ===== */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9) blur(1px);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(0,51,102,0.6), rgba(0,128,255,0.3)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05) 1px, transparent 1px 20px);
  z-index: 2;
}

.inicio-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

/* Título claro con glow */
.inicio-content h1 {
  font-size: 3.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(220,240,255,0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 5px rgba(255,255,255,0.6),
    0 0 10px rgba(255,255,255,0.5),
    0 0 20px rgba(200,230,255,0.4),
    0 0 30px rgba(200,230,255,0.3);
  animation: titleMove 4.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
  display: inline-block;
  position: relative;
}

.inicio-content h1 span {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(220,240,255,0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 5px rgba(255,255,255,0.6),
    0 0 10px rgba(255,255,255,0.5),
    0 0 20px rgba(200,230,255,0.4),
    0 0 30px rgba(200,230,255,0.3);
  animation: titleMove 4.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
  display: inline-block;
  position: relative;
}

@keyframes titleMove {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-4px) scale(1.01); } /* movimiento más sutil */
  100% { transform: translateY(0) scale(1); }
}

/* --- Ajustes Responsivos --- */
@media (max-width: 1200px) {
  .inicio-content h1 { font-size: 3rem; }
  .inicio-content h1 span { font-size: 3.4rem; }
}

@media (max-width: 992px) {
  .inicio-content h1 { font-size: 2.6rem; }
  .inicio-content h1 span { font-size: 3rem; }
}

@media (max-width: 768px) {
  .inicio-content h1 { font-size: 2.2rem; }
  .inicio-content h1 span { font-size: 2.6rem; }
}

@media (max-width: 576px) {
  .inicio-content h1 { font-size: 1.8rem; }
  .inicio-content h1 span { font-size: 2.2rem; }
}

@media (max-width: 400px) {
  .inicio-content h1 { font-size: 1.6rem; }
  .inicio-content h1 span { font-size: 2rem; }
}

.inicio-content h1 {
  line-height: 1.5; /* aumenta el espacio vertical entre líneas */
}

/* Efecto de glow y animación suave para el logo */
.logo-glow {
  width: 300px;
  max-width: 90%;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6))
          drop-shadow(0 0 12px rgba(200,230,255,0.5))
          drop-shadow(0 0 20px rgba(180,220,255,0.4))!important;
  animation: logoPulse 3s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
}

/* Efecto de zoom ligero al pasar el mouse */
.logo-glow:hover {
  transform: scale(1.05);
}

/* Animación similar a la del texto */
@keyframes logoPulse {
  0% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 6px rgba(255,255,255,0.6)); }
  50% { transform: translateY(-4px) scale(1.02); filter: drop-shadow(0 0 10px rgba(220,240,255,0.8)); }
  100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 6px rgba(255,255,255,0.6)); }
}


.inicio-content p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  text-shadow:
    0 0 3px rgba(255,255,255,0.4),
    0 0 6px rgba(220,240,255,0.3);
  animation: fadeInUp 2s ease-in-out;
  margin-top: 10px;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mapa de Procesos */
/* === Mapa de Procesos Mejorado y Responsive (versión unificada) === */
.mapa-container {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 80vh;
  margin: 5vh auto;
  padding: 60px 100px;
  box-sizing: border-box;
  overflow-y: auto;
  scrollbar-width: none; /* Oculta scroll en Firefox */
  justify-content: center;
  align-items: flex-start; /* desde arriba */
  padding-top: 80px;       /* aire superior */
  padding-bottom: 80px;    /* aire inferior */
}

.mapa-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  gap: 10px;
  position: relative;
  margin: 0 auto;
}

/* === Bloques de procesos === */
.process-block {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.process-block h2 {
  margin-bottom: 20px;
  color: #003c5f;
  font-size: 1.4em;
}

.process-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin-bottom: 10px;
}

.process-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s, background-color 0.3s, box-shadow 0.3s;
}

.process-item:hover {
  transform: translateY(-5px);
  opacity: 0.9;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Colores institucionales */
.azul-muy-oscuro { background-color: #00324c; }
.azul-oscuro     { background-color: #1e4060; }
.azul-medio      { background-color: #345b8c; }
.azul-claro      { background-color: #5b9bd5; }

/* Flechas entre bloques */
.arrow-down {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #003c5f;
  margin: 0px;
  align-self: center;
}

/* Bloque de mejoramiento */
.mejoramiento {
  background-color: #1e4060;
  color: #fff;
  font-weight: bold;
  padding: 20px 50px;
  border-radius: 8px;
  position: relative;
  margin: 30px 0 0 0;
  align-self: center;
}

.mejoramiento::before,
.mejoramiento::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 20px solid transparent;
}

.mejoramiento::before { left: -40px; border-right-color: #1e4060; }
.mejoramiento::after  { right: -40px; border-left-color:  #1e4060; }

/* === Etiquetas laterales === */
.side-label {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 600;
  color: #fff;
  background-color: #2e8b85;
  border-radius: 15px;
  padding: 20px 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  font-size: 1.3em;
  letter-spacing: 1px;
}

.side-label.left {
  left: 40px;
  transform: rotate(180deg);
}

.side-label.right {
  right: 40px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

/* === Responsive general === */
@media (max-width: 991px) {
  .mapa-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 20px;
    overflow-y: auto;
    min-height: auto;
  }

  .mapa-content {
    gap: 30px;
    justify-content: flex-start;
  }

  .process-item {
    min-width: 140px;
    font-size: 0.9em;
  }

  .mejoramiento {
    font-size: 0.95em;
    padding: 15px 35px;
  }
}

/* === Etiqueta lateral izquierda horizontal debajo del título === */
@media (max-width: 900px) {
  .side-label.left {
    position: relative;
    top: auto;
    left: auto;
    writing-mode: horizontal-tb;
    transform: none;
    width: auto;
    height: auto;
    padding: 8px 20px;
    margin: 10px auto 20px auto;
    border-radius: 8px;
    background-color: #2e8b85;
    color: #fff;
    font-size: 1em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .side-label.left span {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

/* === Etiqueta lateral derecha horizontal al final del contenido en móviles === */
@media (max-width: 900px) {
  .side-label.right {
    position: relative;
    top: auto;
    right: auto;
    writing-mode: horizontal-tb;
    transform: none;
    width: auto;
    height: auto;
    padding: 8px 20px;
    margin: 20px auto 10px auto;
    border-radius: 8px;
    background-color: #2e8b85;
    color: #fff;
    font-size: 1em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .side-label.right span {
    writing-mode: horizontal-tb;
    transform: none;
  }
}
/* Mapa de Proesos */

/* Que es el SGC */
/* ===== Contenedor principal ===== */
#sgc-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
    overflow-y: auto;

    /* Para ocultar scroll en Firefox */
    scrollbar-width: none; 
}

/* Para ocultar scroll en Chrome, Edge y Safari */
#sgc-container::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* ===== Botones dinámicos ===== */
#sgc-container .sgc-botones {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
	
}

.btn-sgc {
    background: linear-gradient(135deg, #1f7a8c, #3fb0ac);
    border: none;
    border-radius: 12px;
    padding: 18px 28px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center; /* Centra el contenido horizontal y vertical */
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;

    /* ✅ Nuevo: dimensiones fijas */
    width: 220px;   /* ancho fijo */
    height: 70px;  /* alto fijo */
    text-align: center;
}



/* Hover moderno */
.btn-sgc:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    filter: brightness(1.1);
}

/* Botón ISO específico */
.btn-sgc.iso-btn {
    background: linear-gradient(135deg, #009688, #26a69a);
}

/* Botón PHVA específico */
.btn-sgc.phva-btn {
    background: linear-gradient(135deg, #3f51b5, #5c6bc0);
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
    #sgc-container .sgc-header h1 {
        font-size: 2rem;
    }
    #sgc-container .sgc-botones {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    #sgc-container {
        padding: 15px;
    }
    #sgc-container .sgc-header h1 {
        font-size: 1.8rem;
    }
    #sgc-container .sgc-header p,
    #sgc-container .sgc-texto p {
        font-size: 0.95rem;
    }
    .btn-sgc {
        padding: 14px 22px;
        font-size: 0.95rem;
    }
}
/* Que es el SGC */

/* Pilares SGC */
/* ===== Contenedor principal ===== */
#sgc-pilares-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    box-sizing: border-box;
    max-width: 1300px;
    margin: 0 auto;
    overflow-y: auto;

    /* Para ocultar scroll en Firefox */
    scrollbar-width: none; 
}

/* Para ocultar scroll en Chrome, Edge y Safari */
#sgc-pilares-container::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Pilaes SGC */



/* Modal Formulario */
/* === MODAL DE CONTACTO (Personalizado y Moderno) === */

/* Asegura que quede por encima de todo */
.modal {
  z-index: 999999 !important;
}

/* Fondo oscuro translúcido con desenfoque */
.modal-backdrop.show {
  opacity: 0.7 !important;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.6);
}

/* Contenedor principal del modal */
.modal-content {
  border-radius: 20px;
  border: none;
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
  animation: modalFadeIn 0.4s ease-out;
  overflow: hidden;
}

/* Animación suave de aparición */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Encabezado */
.modal-header {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
  border: none;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 20px 30px;
}

.modal-header h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}

.modal-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.modal-header .btn-close:hover {
  opacity: 1;
}

/* Cuerpo del modal */
.modal-body {
  padding: 30px;
}

.modal-body label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 6px;
}

.modal-body .form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  box-shadow: none;
  padding: 10px 14px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modal-body .form-control:focus {
  border-color: #009ada;
  box-shadow: 0 0 0 0.2rem rgba(0, 154, 218, 0.15);
}

/* Botón de envío */
.modal-body .btn-primary {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border: none;
  border-radius: 12px;
  padding: 14px 0;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 119, 182, 0.3);
}

.modal-body .btn-primary:hover {
  background: linear-gradient(135deg, #00b4d8, #009ada);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 119, 182, 0.4);
}

/* ReCaptcha centrado */
.modal-body .g-recaptcha {
  transform: scale(0.9);
  transform-origin: center;
}

/* Mensaje de estado del formulario */
#formMsg {
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Ajustes responsive */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 1rem;
  }

  .modal-content {
    border-radius: 15px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-body .btn-primary {
    font-size: 0.95rem;
    padding: 12px;
  }
}
/* Modal Formulario */



/* Firma Webmaster */
/* ===== Footer en el sidebar ===== */

/* Oculto por defecto */
.sidebar-footer {
  display: none;
  text-align: center;
  font-size: 0.85rem;
  padding: 10px 8px;
  color: #2aa8dd;
  font-family: inherit;
  line-height: 1.2;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  user-select: none; /* 🔒 evita seleccionar el texto */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Edge */
}

/* Se muestra solo cuando el menú está expandido o en hover */
.sidebar:hover .sidebar-footer,
.sidebar.expanded .sidebar-footer,
.sidebar.active .sidebar-footer {
  display: block;
  animation: fadeInFooter 0.3s ease-in-out;
   
}

/* Animación sutil al aparecer */
@keyframes fadeInFooter {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}


/* 📱 Estilos exclusivos para móviles y tablets reales */
body.is-mobile section {
  padding-bottom: 100px; /* puedes ajustar a gusto */
}