/* Variables para colores y fuentes */
:root {
  --primary-text-color: #151517; /* Gris oscuro casi negro */
  --secondary-text-color: #35353e; /* Gris más suave */
  --background-color-light: #f5f5f7; /* Blanco roto / gris muy claro */
  --background-color-white: #ffffff;
  --apple-blue: #1567fe; /* Azul de acento de Apple */
  --link-color: #0D6EFD;
  --border-color: #e8e8ed;
  --font-family-base: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-width-content: 1400px; /* Ancho máximo para el contenido principal */
}

/* Reset básico */
body {
  margin: 0;
  font-family: var(--font-family-base);
  line-height: 1.6;
  color: var(--primary-text-color);
  background-color: var(--background-color-light);
  -webkit-font-smoothing: antialiased; /* Suavizado de fuentes para Mac/iOS */
  scroll-behavior: smooth; /* Desplazamiento suave al hacer clic en enlaces internos */
}

/* Estilos de encabezados */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600; /* Apple usa un peso de fuente medio-bold para títulos */
  color: var(--primary-text-color);
  margin-bottom: 0.5em; /* Espacio debajo de los títulos */
}

h1 { font-size: 3.5em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }
h4 { font-size: 1.2em; }

/* Estilos de párrafos */
p {
  color: var(--secondary-text-color);
  line-height: 1.7;
  font-size: 1.1em;
}

/* Estilos de enlaces */
a {
  text-decoration: none;
  color: var(--link-color);
  transition: color 0.3s ease; /* Transición suave al pasar el cursor */
}

a:hover {
  text-decoration: underline; /* Sutil subrayado al pasar el ratón */
}

/* Contenedor principal para centrar contenido */
main {
  max-width: 100%; /* Las secciones de Apple a menudo van a ancho completo */
  margin: 0 auto;
}

/* Botones */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 999px; /* Botones redondeados */
  font-weight: 500;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.btn.primary {
  background-color: var(--apple-blue);
  color: #fff;
  border: 2px solid var(--apple-blue);
}

.btn.primary:hover {
  background-color: #006ee6; /* Un tono más oscuro del azul */
  transform: translateY(-1px); /* Efecto de "levantar" */
}

.btn.secondary {
  background-color: transparent;
  color: var(--link-color);
  border: none;
  padding: 12px 0; /* Sin padding horizontal para estos botones */
}

.btn.secondary:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* --- SECCIÓN SUPERIOR DE INFORMACIÓN --- */
.top-info-bar {
  width: 100%;
  background-color: rgba(26, 26, 28, 0.95); /* Fondo oscuro como en Apple */
  color: #fff;
  padding: 10px 0;
  font-size: 0.85em;
  text-align: center;
  position: relative; /* Asegura que no sea cubierto por elementos fijos de abajo */
  z-index: 1001; /* Colocado un z-index alto para asegurar que se vea */
}

.top-info-content {
  max-width: calc(var(--max-width-content) * 0.9); /* 90% del ancho del contenedor principal */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px; /* Padding interno para que el contenido no toque los bordes */
}

.top-logo {
  font-weight: 700;
  font-size: 1em;
  color: #fff;
}

.contact-info {
  display: flex;
  gap: 30px; /* Espacio entre las columnas de contacto */
}

.contact-column {
  display: flex;
  flex-direction: column; /* Apilar texto y enlace */
  text-align: right;
}

.contact-column span {
  font-size: 0.8em;
  color: #b0b0b5; /* Texto más claro para el label */
  margin-bottom: 2px;
}

.contact-column a {
  color: #f17a31; /* Enlaces blancos */
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap; /* Evitar que el texto del enlace se rompa */
}

.contact-column a:hover {
  text-decoration: underline;
}


/* --- Header y Navegación Principal --- */
header {

  background-color: #1a1a1c; /* Ligeramente transparente */
  backdrop-filter: blur(10px); /* Efecto blur detrás de la nav */
  padding: 15px 0;
  max-height: 200px;
  position: sticky; /* Se mantiene en la parte superior al desplazarse */
  top: 0;
  z-index: 1000; /* Asegura que esté por encima de otros contenidos */
  border-bottom: 1px solid var(--border-color);
}

nav {
  max-width: var(--max-width-content);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  position: relative; /* Importante para el posicionamiento del menú móvil */
}

.logo {
  font-weight: 700;
  font-size: 1.2em;
  color: var(--primary-text-color);
}

/* Ocultar el checkbox principal del menú móvil por defecto */
#menu-toggle-main {
  display: none;
}

/* Estilos de los enlaces de navegación principales (por defecto para pantallas grandes) */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 35px; /* Espacio entre los elementos del menú */
  position: relative; /* Contenedor para los submenús */
}

.nav-links li a {
  font-size: 0.95em;
  font-weight: 500;
  color: #fff;
  padding: 5px 0;
  position: relative;
  opacity: 0.8; /* Ligeramente transparente por defecto */
}

.nav-links li a:hover {
  opacity: 1; /* Opacidad completa al pasar el cursor */
}

/* --- Estilos del Submenú Desplegable en Cascada (PARA PC / DESKTOP) --- */
.has-submenu {
  position: relative; /* Hace que el LI sea el ancla para el submenú */
}

.submenu-content {
  /* Por defecto, oculto y fuera del flujo */
  display: none; 
  position: absolute;
  top: 100%; /* Se posiciona justo debajo del elemento del menú padre */
  left: 50%;
  transform: translateX(-50%); /* Centra el submenú bajo el elemento padre */
  min-width: 400px; /* Ancho mínimo del submenú */
  background-color: rgba(255, 255, 255, 0.95); /* Fondo ligeramente transparente */
  backdrop-filter: blur(10px); /* Efecto blur para simular iOS/macOS */
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15); /* Sombra para profundidad */
  padding: 20px;
  z-index: 999; /* Por debajo de la barra de navegación sticky pero por encima del contenido */
  opacity: 0; /* Para la animación de aparición */
  visibility: hidden; /* Para que no sea interactuable cuando está oculto */
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex; /* Para las columnas internas del submenú */
  gap: 30px; /* Espacio entre las columnas del submenú */
}

/* Mostrar el submenú de PRIMER NIVEL al pasar el cursor (hover) sobre el LI padre
 O cuando la clase 'open' es añadida por JavaScript (para click en desktop y mobile) */
.has-submenu:hover > .submenu-content,
.has-submenu:focus-within > .submenu-content, /* Para accesibilidad con teclado */
.has-submenu.open > .submenu-content { 
  display: flex; /* Cambia a flex para mostrar el contenido y sus columnas */
  opacity: 1;
  visibility: visible;
}

.submenu-column {
  flex: 1; /* Las columnas ocupan el mismo espacio disponible */
  min-width: 150px;
  position: relative; /* Importante para submenús anidados dentro de estas columnas */
}

.submenu-column h4 {
  font-size: 1em;
  font-weight: 700; /* Más bold para los títulos de columna */
  color: var(--primary-text-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.submenu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu-column ul li {
  margin-bottom: 8px; /* Espacio entre los enlaces del submenú */
  position: relative; /* Para el posicionamiento del submenú anidado */
}

.submenu-column ul li a {
  font-size: 0.95em;
  color: var(--secondary-text-color);
  padding: 5px 0;
  display: block; /* Para que el área clicable sea más grande */
  transition: color 0.2s ease;
}

.submenu-column ul li a:hover {
  color: var(--primary-text-color); /* Texto más oscuro al pasar el ratón */
  text-decoration: none; /* Quitamos el subrayado que se añade por defecto en a:hover */
}


/* --- ESTILOS PARA EL SUBMENÚ ANIDADO (SEGUNDO NIVEL / Cascada de Taxonomías) --- */
.nested-submenu {
  top: -10px; /* Ajustar ligeramente hacia arriba para alinearse con el LI padre */
  left: 100%; /* Posicionarse a la derecha del elemento padre (LI) */
  transform: translateX(10px); /* Pequeño desplazamiento para evitar superposición */
  min-width: 200px; /* Ancho más pequeño para el submenú de segundo nivel */
  background-color: rgba(255, 255, 255, 0.98); /* Fondo ligeramente más opaco */
  border-left: 5px solid var(--apple-blue); /* Borde de acento para indicar anidación */
  border-top-left-radius: 0; /* Ajustar bordes para que parezca una extensión */
  border-bottom-left-radius: 0;
  padding: 15px; /* Menos padding que el submenú de primer nivel */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Sombra más sutil */
  flex-direction: column; /* Asegura que las columnas se apilen si las tuviera */
  gap: 0; /* Sin gap para las columnas internas */
}

/* Mostrar el submenú ANIDADO (segundo nivel) al pasar el cursor sobre su LI padre
 O cuando la clase 'open' es añadida por JavaScript */
.submenu-column ul li.has-submenu:hover > .nested-submenu,
.submenu-column ul li.has-submenu:focus-within > .nested-submenu,
.submenu-column ul li.has-submenu.open > .nested-submenu {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.nested-submenu h4 {
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-text-color);
}

.nested-submenu ul li a {
  font-size: 0.9em;
  padding: 3px 0;
}


/* --- Icono de Menú Hamburguesa (oculto por defecto en pantallas grandes) --- */
.menu-icon {
  display: none; /* Oculto en desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 1001; /* Asegura que esté por encima del menú */
  position: relative;
}

.menu-icon .nav-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* --- SECCIONES DE CONTENIDO --- */

/* Sección 1: Hero Section (Producto Principal) */
.hero-section {
  background-color: var(--background-color-white);
  text-align: center;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-section .content {
  max-width: 800px;
  margin-bottom: 50px;
}

.hero-section h2 {
  font-size: 1.5em;
  color: var(--secondary-text-color);
  margin-bottom: 10px;
}

.hero-section h1 {
  font-size: 4em;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.3em;
  max-width: 700px;
  
}

.hero-section .actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-section .product-image {
  width: 100%;
  margin-top: 50px;
}

.hero-section .product-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Sección 2: Grid de Productos Secundarios / Características */
.grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 60px 20px;
  max-width: var(--max-width-content);
  margin: 0 auto;
}

.grid-item {
  background-color: var(--background-color-white);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.grid-item.large {
  grid-column: span 2;
}

.grid-item img {
  max-width: 80%;
  height: auto;
 
  border-radius: 8px;
}

.grid-item h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.grid-item p {
  text-align: justify;
  font-size: 1em;
  margin-bottom: 20px;
}

/* Sección 3: Tecnología / Innovación Destacada */
.tech-section {
  background-color: #1a1a1c;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
}

.tech-section .tech-content {
  max-width: 800px;
  margin-bottom: 50px;
}

.tech-section h2 {
  color: #fff;
  font-size: 2.8em;
  margin-bottom: 15px;
}

.tech-section h3 {
  color: #fff;
  font-size: 1.8em;
  opacity: 0.9;
  margin-bottom: 20px;
}

.tech-section p {
  color: #d9d9d9;
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px;
}

.tech-section .tech-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.tech-section .btn.secondary {
  color: #ff6d24;
  text-decoration: underline;
}
.tech-section .btn.secondary:hover {
  color: #e0e0e0;
}

/* Sección 4: Servicios / Ecosistema de Contenido */
.services-section {
  background-color: var(--background-color-white);
  padding: 80px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 2.8em;
  margin-bottom: 50px;
}

.services-section .service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: var(--max-width-content);
  margin: 0 auto;
}

.service-cards .card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--background-color-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: left;
  transition: transform 0.3s ease;
}

.service-cards .card:hover {
  transform: translateY(-5px);
}

.service-cards .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-cards .card h3 {
  padding: 15px 20px 5px;
  font-size: 1.4em;
}

.service-cards .card p {
  padding: 0 20px 15px;
  font-size: 0.95em;
  color: var(--secondary-text-color);
}

.service-cards .card a {
  display: block;
  padding: 0 20px 20px;
  font-weight: 500;
}

/* Sección 5: Conectividad / Ecosistema de Productos */
.connectivity-section {
  background-color: var(--background-color-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
}

.connectivity-section .connect-content {
  max-width: 800px;

}

.connectivity-section h2 {
  font-size: 2.8em;
  margin-bottom: 15px;
}

.connectivity-section h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.connectivity-section p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px;
}

.connectivity-section .connect-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Sección 6: Rendimiento/Chip */
.performance-section {
  background-color: var(--background-color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
}

.performance-section .performance-content {
  max-width: 800px;
  margin-bottom: 50px;
}

.performance-section h2 {
  font-size: 2.8em;
  margin-bottom: 15px;
}

.performance-section h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #0D6EFD;
}

.performance-section p {
  font-size: 1.1em;
  max-width: 700px;
  text-align: justify
  ;
  margin: 0 auto 30px;
}

.performance-section ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 700px;
  text-align: left;
}

.performance-section ul li {
  font-size: 1.1em;
  color: var(--primary-text-color);
  margin-bottom: 10px;
  font-weight: 500;
}

.performance-section .performance-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Sección 7: Privacidad */
.privacy-section {
  background-color: #1a1a1c;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.privacy-section .privacy-content {
  max-width: 700px;
}

.privacy-section .icon {
  font-size: 4em;
  margin-bottom: 20px;
  line-height: 1;
}

.privacy-section h2 {
  color: #fff;
  font-size: 2.8em;
  margin-bottom: 15px;
}

.privacy-section p {
  color: #b0b0b5;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 600px;
  text-align: left;
}

.privacy-section ul li {
  font-size: 1em;
  color: #b0b0b5;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.privacy-section ul li::before {
  content: '✓';
  color: #00e676;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.privacy-section .btn.secondary {
  color: #f17a31;
}
.privacy-section .btn.secondary:hover {
  color: #e0e0e0;
}

/* Sección 8: Sostenibilidad */
.sustainability-section {
  background-color: var(--background-color-white);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sustainability-section .sustainability-content {
  max-width: 800px;
}

.sustainability-section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sustainability-section h2 {
  font-size: 2.8em;
  margin-bottom: 15px;
}

.sustainability-section h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.sustainability-section p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 40px;
}

/* Sección 9: Accesorios / Compatibilidad */
.accessories-section {
  background-color: var(--background-color-light);
  padding:  20px;
  text-align: center;
}

.accessories-section h2 {
  font-size: 2.8em;
  margin-bottom: 25px;
}

.accessories-section .accessory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  max-width: var(--max-width-content);
  margin: 0 auto 50px;
}


.accessory-grid .acc-item {
  background-color: var(--background-color-white);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s ease;
}

.accessory-grid .acc-item:hover {
  transform: translateY(-5px);
}
/* --- SECCIÓN DE LISTA DE ARTÍCULOS --- */
.isabellaamor-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color-white);
}

.isabellaamor-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.isabellaamor-section {
  display: flex;
  flex-direction: column;
}

.isabellaamor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.isabellaamor-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.isabellaamor-item:hover {
  transform: translateX(5px);
}

.isabellaamor-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--apple-blue);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}

.isabellaamor-item-content {
  flex: 1;
}


.isabellaamor-item-title {
  font-weight: 500;
  font-size: 1.05em;
  line-height: 1.4;
}

.isabellaamor-item-title a {
  color: var(--primary-text-color);
  text-decoration: none;
  transition: color var(--transition-base);
}

.isabellaamor-item-title a:hover {
  color: var(--apple-blue);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .isabellaamor-container {
    padding: 50px 20px;
  }
  
  .isabellaamor-sections {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .isabellaamor-container {
    padding: 40px 15px;
  }
  
  .isabellaamor-item {
    padding: 10px 0;
  }
  
  .isabellaamor-item-title {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .isabellaamor-sections {
    grid-template-columns: 1fr;
  }
  
  .isabellaamor-container {
    padding: 30px 10px;
  }
  
  .isabellaamor-item {
    gap: 10px;
  }
  
  .isabellaamor-bullet {
    width: 6px;
    height: 6px;
    margin-top: 8px;
  }
}
/* --- BANNER DE ALQUILER DE MANLIFT --- */
.vansoss-banner {
  background: linear-gradient(135deg, #1a1a1c 0%, #333 100%);
  padding: 60px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.vansoss-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://example.com/manlift-bg.jpg'); /* Reemplaza con tu imagen */
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.vansoss-banner-content {
  max-width: var(--max-width-content);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.vansoss-banner h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.vansoss-banner p {
  font-size: 1.2em;
  color: #fff;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.vansoss-banner ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5px;
  text-align: left;
}

.vansoss-banner li {
  margin: 8px 0;
  color: #fff;
  font-size: 1em;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.vansoss-banner li span {
  color: #05c105;
  font-weight: bold;
  flex-shrink: 0;
}

.vansoss-banner-btn {
  display: inline-block;
  background-color: var(--apple-blue);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  margin-top: 20px;
  transition: all var(--transition-base);
  border: 2px solid var(--apple-blue);
  box-shadow: 0 4px 15px rgba(254, 98, 21, 0.3);
}

.vansoss-banner-btn:hover {
  background-color: #e05512;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(254, 98, 21, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .vansoss-banner {
    padding: 50px 20px;
  }
  
  .vansoss-banner h2 {
    font-size: 2.2em;
  }
  
  .vansoss-banner p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .vansoss-banner {
    padding: 40px 15px;
  }
  
  .vansoss-banner h2 {
    font-size: 1.8em;
  }
  
  .vansoss-banner ul {
    grid-template-columns: 1fr;
  }
  
  .vansoss-banner-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .vansoss-banner {
    padding: 30px 10px;
  }
  
  .vansoss-banner h2 {
    font-size: 1.6em;
  }
  
  .vansoss-banner p {
    font-size: 1em;
  }
  
  .vansoss-banner li {
    font-size: 0.95em;
  }
}
/* --- SECCIÓN DE CONTACTO --- */
.vansoss-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 80px 20px;
  background-color: var(--background-color-white);
}

.vansoss-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vansoss-info h3, 
.vansoss-form h3, 
.vansoss-map h3 {
  font-size: 1.8em;
  color: var(--primary-text-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.vansoss-info h3::after,
.vansoss-form h3::after,
.vansoss-map h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--apple-blue);
}

.vansoss-info p {
  color: var(--secondary-text-color);
  line-height: 1.7;
  font-size: 1.05em;
}

.vansoss-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vansoss-info ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: var(--primary-text-color);
  font-size: 1em;
  line-height: 1.5;
}

.vansoss-info ul li svg {
  flex-shrink: 0;
  color: var(--apple-blue);
}

/* Formulario de contacto */
.vansoss-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vansoss-form label {
  display: block;
  position: relative;
}

.vansoss-form input,
.vansoss-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-family-base);
  font-size: 1em;
  transition: border-color var(--transition-base);
}

.vansoss-form input:focus,
.vansoss-form textarea:focus {
  outline: none;
  border-color: var(--apple-blue);
  box-shadow: 0 0 0 3px rgba(254, 98, 21, 0.1);
}

.vansoss-form textarea {
  min-height: 120px;
  resize: vertical;
}

.vansoss-form .mfControls {
  margin-top: 10px;
}

/* Mapa */
.vansoss-map iframe {
  border-radius: var(--border-radius-base);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background-color: var(--background-color-light);
}

/* Responsive */
@media (max-width: 992px) {
  .vansoss-contact {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }
  
  .vansoss-column {
    gap: 15px;
  }
  
  .vansoss-info h3, 
  .vansoss-form h3, 
  .vansoss-map h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .vansoss-contact {
    padding: 50px 15px;
    gap: 30px;
  }
  
  .vansoss-info ul li {
    font-size: 0.95em;
    gap: 10px;
  }
  
  .vansoss-info ul li svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .vansoss-contact {
    padding: 40px 10px;
  }
  
  .vansoss-info h3, 
  .vansoss-form h3, 
  .vansoss-map h3 {
    font-size: 1.4em;
  }
  
  .vansoss-form input,
  .vansoss-form textarea {
    padding: 10px 12px;
  }
}
.accessory-grid .acc-item img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
}

.accessory-grid .acc-item h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.accessory-grid .acc-item p {
  font-size: 0.9em;
  color: var(--secondary-text-color);
  margin-bottom: 15px;
}

.accessories-section .btn.more-accessories {
  margin-top: 20px;
}

/* Sección 10: Información Adicional / Llamada a la Acción Final */
.info-cta-section {
  background-color: var(--background-color-white);
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.info-cta-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.info-cta-section p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px;
}

.info-cta-section .btn {
  margin-bottom: 60px;
}

.info-cta-section .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: var(--max-width-content);
  margin: 0 auto;
  text-align: center;
}

.links-grid h4 {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-grid ul li {
  padding: 0px 20px;
    margin-bottom: 26px;
    text-align: justify;
}

.links-grid ul li a {
  color: var(--secondary-text-color);
  font-size: 0.9em;
}

.links-grid ul li a:hover {
  color: var(--primary-text-color);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid var(--border-color);
  color: var(--secondary-text-color);
  font-size: 0.85em;
  background-color: var(--background-color-light);
}

footer p {
  margin-bottom: 10px;
  font-size: inherit;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

footer ul li a {
  color: var(--secondary-text-color);
  font-size: inherit;
}

footer ul li a:hover {
  color: var(--primary-text-color);
}

/* --- MEDIA QUERIES PARA RESPONSIVIDAD (Ajustes clave para menú móvil) --- */

/* Breakpoint para menú hamburguesa y ajustes generales para tablets y móviles */
@media (max-width: 900px) {
  /* --- SECCIÓN SUPERIOR DE INFORMACIÓN EN MÓVILES --- */
  .top-info-bar {
      padding: 8px 0; /* Reduce padding vertical */
      font-size: 0.8em;
  }

  .top-info-content {
      flex-direction: column; /* Apila el logo y la info de contacto */
      gap: 5px; /* Espacio entre ellos */
      text-align: center;
      max-height: 140px;
  }

  .contact-info {
      flex-direction: column; /* Apila las columnas de dirección/teléfono */
      gap: 5px;
      text-align: center; /* Centra el texto */
  }
  .equipment-list {
            list-style: none;
            padding: 0;
            margin-top: 2em;
        }
        .equipment-list li {
            margin-bottom: 2em;
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 2em;
        }
        .equipment-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .equipment-list h4 {
            font-size: 1.4em;
            margin-top: 0;
            margin-bottom: 0.5em;
            color: #007bff;
            display: flex;
            align-items: center;
        }
        .equipment-list h4::before {
            content: '✔️';
            margin-right: 10px;
            font-size: 0.9em;
        }
  .contact-column {
      align-items: center; /* Centra los ítems dentro de la columna */
      text-align: center;
  }

  /* Ajustes de tamaño de fuente para pantallas medianas */
  h1 { font-size: 3em; }
  h2 { font-size: 2em; }
  h3 { font-size: 1.6em; }

  .hero-section h1 {
      font-size: 3.2em;
  }

  .tech-section h2, .services-section h2, .connectivity-section h2,
  .performance-section h2, .privacy-section h2, .sustainability-section h2, .accessories-section h2 {
      font-size: 2.2em;
  }

  .grid-item.large {
      grid-column: span 1; /* En pantallas más pequeñas, los grandes no ocupan doble columna */
  }

  .links-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  /* --- NAVEGACIÓN MÓVIL (MENÚ HAMBURGUESA) --- */
  nav {
      flex-direction: row; /* Mantener logo e icono en la misma fila */
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      position: relative;
  }

  .menu-icon {
      display: flex; /* Mostrar el icono de hamburguesa */
  }

  /* Ocultar los enlaces por defecto en móvil y gestionar su apertura con JS */
  .nav-links {
      display: none; 
      flex-direction: column; /* Apilar verticalmente */
      position: absolute;
      /* TOP AJUSTADO: Se posiciona justo debajo del HEADER principal, no del top-info-bar */
      top: 100%; 
      left: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.98); /* Fondo casi opaco para el menú móvil */
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--border-color);
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      padding: 20px 0;
      text-align: left; /* Alinear texto a la izquierda */
      max-height: 0; /* Para la animación de despliegue */
      overflow-y: auto; /* Permite desplazamiento si hay muchos elementos */
      transition: max-height 0.4s ease-out;
      z-index: 990; /* Asegurar que el menú esté debajo del icono principal */
  }

  /* Clase que JS añadirá para abrir el menú principal */
  .nav-links.menu-open {
      max-height: 900px; /* Suficiente altura para el menú completo */
      display: flex; /* Asegura que esté visible */
  }

  .nav-links li {
      margin: 0; /* Eliminar márgenes horizontales */
      padding: 10px 20px; /* Padding para los ítems principales del menú móvil */
      width: 100%;
      box-sizing: border-box; /* Incluir padding en el ancho */
  }
  
  /* Enlaces directos o principales */
  .nav-links li a:not([data-submenu-toggle]) {
      font-size: 1.1em;
      color: var(--primary-text-color);
      display: block;
      padding: 0;
  }

  /* Estilos para los enlaces/botones que tienen un submenú (gestionados por JS) */
  .nav-links li.has-submenu > a[data-submenu-toggle] {
      display: flex; /* Permite alinear el texto y la flecha */
      justify-content: space-between;
      align-items: center;
      width: 100%;
      font-size: 1.1em;
      color: var(--primary-text-color);
      cursor: pointer;
      padding: 0;
  }

  /* Flecha para indicar que hay un submenú */
  .nav-links li.has-submenu > a[data-submenu-toggle]::after {
      content: '+'; /* Símbolo para indicar que se puede expandir */
      font-size: 1.2em;
      display: block;
      transform: rotate(0deg); /* Por defecto */
      transition: transform 0.3s ease;
      margin-left: 10px;
  }

  /* Rotar la flecha cuando el submenú está abierto */
  .nav-links li.has-submenu.open > a[data-submenu-toggle]::after {
      transform: rotate(45deg); /* Gira a una "X" o flecha hacia arriba */
  }

  /* Ocultar submenú de primer y segundo nivel por defecto en móvil */
  .nav-links li.has-submenu > .submenu-content {
      max-height: 0; /* Oculto por defecto, con transición */
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      /* Restablecer estilos de desktop */
      position: static;
      transform: none;
      min-width: auto;
      background-color: transparent;
      backdrop-filter: none;
      border: none;
      box-shadow: none;
      padding: 0;
      opacity: 1; /* Ya no para animación de opacidad, sino para visibilidad */
      visibility: visible;
      flex-direction: column;
      gap: 0;
      text-align: left;
      margin-top: 10px;
      margin-left: 20px; /* Indentación para submenú */
      border-left: 1px solid var(--border-color); /* Línea de indentación */
  }

  /* Mostrar submenú cuando su LI padre tiene la clase 'open' */
  .nav-links li.has-submenu.open > .submenu-content {
      max-height: 500px; /* Suficiente altura para el contenido del submenú */
  }

  /* Estilos para las columnas dentro del submenú en móvil (se apilan) */
  .submenu-content .submenu-column {
      min-width: auto;
      padding: 0;
      margin-top: 15px; /* Espacio entre columnas apiladas */
  }

  .submenu-content .submenu-column:first-child {
      margin-top: 0; /* No se necesita margen superior extra para la primera columna */
  }

  .submenu-content .submenu-column h4 {
      margin-top: 0;
      margin-bottom: 8px;
      font-size: 1em;
      color: var(--primary-text-color);
  }

  .submenu-content .submenu-column ul li {
      padding: 0;
  }

  .submenu-content .submenu-column ul li a {
      font-size: 0.95em;
      padding: 5px 0;
      color: var(--secondary-text-color);
  }
  
  /* Rotar la flecha principal de la hamburguesa */
  #menu-toggle-main:checked + .menu-icon .nav-icon:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
  }
  #menu-toggle-main:checked + .menu-icon .nav-icon:nth-child(2) {
      opacity: 0;
  }
  #menu-toggle-main:checked + .menu-icon .nav-icon:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
  }
}

/* --- Media Query para Teléfonos (ajustes finos) --- */
@media (max-width: 768px) {
  /* Ajustes generales de tamaño para pantallas más pequeñas */
  h1 { font-size: 2.8em; }
  h2 { font-size: 2.2em; }
  h3 { font-size: 1.4em; }

  .hero-section h1 {
      font-size: 2.8em;
  }

  .hero-section p {
      font-size: 1.1em;
  }

  .actions {
      flex-direction: column; /* Botones apilados */
      align-items: center;
  }

  /* Márgenes reducidos para secciones */
  .tech-section .tech-content, .connectivity-section .connect-content,
  .performance-section .performance-content, .sustainability-section .sustainability-content {
      margin-bottom: 30px;
  }

  /* Tarjetas de servicio a ancho completo */
  .service-cards .card {
      min-width: fit-content;
      width: 100%;
      max-width: 400px;
  }

  /* Cuadrícula de enlaces en pie de página a una columna */
  .links-grid {
      grid-template-columns: 1fr;
      text-align: center;
  }

  /* Cuadrícula de accesorios ajustada */
  .accessory-grid {
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* --- Media Query para Teléfonos muy pequeños (ajustes finos) --- */
@media (max-width: 480px) {
  h1 { font-size: 2.5em; }
  h2 { font-size: 1.8em; }

  .hero-section h1 {
      font-size: 2.4em;
  }

  .hero-section p {
      font-size: 1em;
  }

  .btn {
      padding: 10px 20px;
      font-size: 0.9em;
  }

  .nav-links li {
      padding: 8px 15px; /* Reducir padding de ítems del menú móvil */
  }

  .nav-links li a[data-submenu-toggle] {
      font-size: 1em; /* Ajustar el tamaño del texto del enlace/label */
  }

  .tech-section h2, .services-section h2, .connectivity-section h2,
  .performance-section h2, .privacy-section h2, .sustainability-section h2,
  .accessories-section h2, .info-cta-section h2 {
      font-size: 1.8em;
  }

  .tech-section h3, .connectivity-section h3, .performance-section h3, .sustainability-section h3 {
      font-size: 1.4em;
  }

  .service-cards .card h3, .accessory-grid .acc-item h3 {
      font-size: 1.2em;
  }

  .privacy-section .icon {
      font-size: 3em;
  }
}
/* ... (Todo el CSS anterior hasta la sección de Media Queries) ... */

/* --- Estilos Específicos para la Página de Artículo --- */

.article-main {
  max-width: 800px; /* Ancho máximo para el contenido del artículo */
  margin: 40px auto; /* Espacio superior e inferior */
  padding: 0 20px; /* Padding horizontal para pantallas más pequeñas */
  background-color: var(--background-color-white);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Sombra sutil */
  padding-bottom: 60px; /* Más espacio al final del artículo */
}

article {
  padding: 40px 0; /* Padding interno para el contenido del artículo */
}

.article-hero {
  text-align: center;
  margin-bottom: 60px;
}

.article-category {
  font-size: 0.9em;
  color: var(--apple-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.article-hero h1 {
  font-size: 3.2em; /* Título principal del artículo */
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.article-intro {
  font-size: 1.4em;
  color: var(--secondary-text-color);
  max-width: 750px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.article-date {
  font-size: 0.9em;
  color: var(--secondary-text-color);
  display: block; /* Para que ocupe su propia línea */
}

.article-image-full {
  margin: 40px -20px 60px; /* Márgenes negativos para que la imagen se extienda un poco más */
  text-align: center;
}

.article-image-full img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* Bordes redondeados para las imágenes */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-image-full figcaption {
  font-size: 0.9em;
  color: var(--secondary-text-color);
  margin-top: 15px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.article-content {
  max-width: 700px; /* Ancho más estrecho para el cuerpo del texto para mejorar la legibilidad */
  margin: 0 auto;
  font-size: 1.05em; /* Un poco más grande para facilitar la lectura */
  line-height: 1.8;
}

.article-content p {
  margin-bottom: 1.5em; /* Más espacio entre párrafos */
  color: var(--primary-text-color); /* Un poco más oscuro para el cuerpo del texto */
}

.article-content h2 {
  font-size: 2em;
  margin-top: 2em; /* Espacio antes de los subtítulos de sección */
  margin-bottom: 0.8em;
  color: var(--primary-text-color);
}

.article-content h3 {
  font-size: 1.6em;
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  color: var(--primary-text-color);
}

.article-image-inline {
  margin: 30px 0;
  text-align: center;
}

.article-image-inline img {
  max-width: 90%; /* Imágenes más pequeñas dentro del texto */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.article-image-inline figcaption {
  font-size: 0.85em;
  color: var(--secondary-text-color);
  margin-top: 10px;
}

blockquote {
  font-size: 1.4em;
  font-style: italic;
  text-align: center;
  margin: 60px auto; /* Amplio margen para destacarlo */
  padding: 20px 40px;
  border-left: 5px solid var(--apple-blue); /* Barra de acento */
  color: var(--primary-text-color);
  max-width: 600px;
  line-height: 1.4;
  background-color: var(--background-color-light);
  border-radius: 8px;
}

blockquote cite {
  display: block;
  font-size: 0.8em;
  margin-top: 15px;
  color: var(--secondary-text-color);
  font-style: normal;
}


/* --- Ajustes en Media Queries para el Artículo --- */
@media (max-width: 900px) {
  /* ... (Mantén todas las reglas existentes para el menú hamburguesa y otras secciones) ... */

  .article-main {
      margin: 20px auto;
      padding: 0 15px;
      border-radius: 0; /* Quita el borde redondeado en móviles si prefieres */
      box-shadow: none; /* Elimina la sombra en móviles */
  }

  .article-hero h1 {
      font-size: 2.5em; /* Ajusta el tamaño del título en móviles */
  }

  .article-intro {
      font-size: 1.2em;
  }

  .article-content {
      max-width: 100%; /* El contenido del artículo ocupa el ancho completo en móviles */
      font-size: 1em;
  }

  .article-image-full {
      margin: 30px -15px 40px; /* Ajusta márgenes negativos para el padding de .article-main */
  }

  blockquote {
      font-size: 1.2em;
      padding: 15px 25px;
      margin: 40px auto;
  }
}

@media (max-width: 480px) {
  /* ... (Mantén las reglas existentes) ... */

  .article-hero h1 {
      font-size: 2em; /* Título aún más pequeño en móviles muy pequeños */
  }

  .article-intro {
      font-size: 1em;
  }

  .article-content p {
      font-size: 0.95em;
  }

  .article-content h2 {
      font-size: 1.6em;
  }

  .article-content h3 {
      font-size: 1.3em;
  }

  blockquote {
      font-size: 1.1em;
      padding: 10px 20px;
      margin: 30px auto;
  }
}
/* --- CARRUSEL DE LOGOS DE MANLIFT --- */
.galeria-carrusel {
  padding: 60px 20px;
  background-color: var(--background-color-light);
  position: relative;
}
.logos-carousel-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.logos-carousel {
  display: flex;
  align-items: center;
  gap: 60px; /* Espacio entre logos */
  padding: 20px 0;
}

/* Duplicamos los logos para crear el efecto de bucle infinito */
.logos-carousel > div {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logos-carousel img {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(70%);
  transition: all var(--transition-base);
}

.logos-carousel img:hover {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.05);
}

/* Animación del carrusel */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Mueve solo la mitad ya que los logos están duplicados */
}

/* Creamos el bucle infinito duplicando el contenido */
.logos-carousel {
  display: flex;
  width: max-content;
  animation: slide 30s linear infinite;
}

/* Pausar animación al hacer hover */
.logos-carousel:hover {
  animation-play-state: paused;
}

/* Efectos de desvanecimiento en los bordes */
.logos-carousel-container::before,
.logos-carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logos-carousel-container::before {
  left: 0;
  background: linear-gradient(90deg, rgba(245,245,247,1) 0%, rgba(245,245,247,0) 100%);
}

.logos-carousel-container::after {
  right: 0;
  background: linear-gradient(270deg, rgba(245,245,247,1) 0%, rgba(245,245,247,0) 100%);
}

/* Responsive */
@media (max-width: 1200px) {
  .logos-carousel img {
    max-width: 150px;
  }
  .logos-carousel {
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .galeria-carrusel {
    padding: 50px 20px;
  }
  
  .logos-carousel img {
    max-width: 130px;
  }
  .logos-carousel {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .logos-carousel {
    gap: 30px;
  }
  
  .logos-carousel img {
    max-width: 110px;
    max-height: 60px;
  }
  
  .logos-carousel-container::before,
  .logos-carousel-container::after {
    width: 50px;
  }
}

@media (max-width: 576px) {
  .galeria-carrusel {
    padding: 40px 10px;
  }
  
  .logos-carousel img {
    max-width: 90px;
    max-height: 50px;
  }
  
  .logos-carousel {
    gap: 20px;
    animation: slide 20s linear infinite;
  }
}
/* Estilos para la sección de preguntas frecuentes */
.pregu-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 40px 20px;
}

.pregu-column {
  flex: 1;
  min-width: 300px;
}

.pregu-item {
  background-color: var(--background-color-white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pregu-item:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.pregu-question {
  padding: 20px;
  cursor: pointer;
  position: relative;
  background-color: #ffb076;
  color: #fff;
}

.pregu-question h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: 500;
  padding-right: 30px;
}

.pregu-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.pregu-item.active .pregu-question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.pregu-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 20px;
}

.pregu-item.active .pregu-answer {
  max-height: 2000px; /* Ajusta este valor según sea necesario */
  padding: 20px;
}

.pregu-answer p, 
.pregu-answer ul, 
.pregu-answer li {
  color: var(--primary-text-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.pregu-answer h3 {
  font-size: 1.1em;
  margin: 25px 0 10px 0;
  color: var(--apple-blue);
}

.pregu-answer ul {
  padding-left: 20px;
}

.pregu-answer ul li {
  position: relative;
  padding-left: 15px;
}

.pregu-answer ul li::before {
  content: '•';
  color: var(--apple-blue);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .pregu-container {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .pregu-column {
    width: 100%;
  }
  
  .pregu-question {
    padding: 15px;
  }
  
  .pregu-question h3 {
    font-size: 1.1em;
  }
  
  .pregu-item.active .pregu-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .pregu-question h3 {
    font-size: 1em;
    padding-right: 25px;
  }
  
  .pregu-question::after {
    right: 15px;
    font-size: 1.3em;
  }
}
/* Estilos para la sección de mafavsisantas frecuentes */
.mafavsisa-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: var(--max-width-content);
  margin: 0 auto;
 
}

.mafavsisa-column {
  flex: 1;
  min-width: 300px;
}

.mafavsisa-item {
  background-color: var(--background-color-white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mafavsisa-item:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.mafavsisa-question {
  
  cursor: pointer;
  position: relative;
  background-color: var(--apple-blue);
  color: #fff;
}

.mafavsisa-question h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  padding: 15px;
}

.mafavsisa-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.mafavsisa-item.active .mafavsisa-question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.mafavsisa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 20px;
}

.mafavsisa-item.active .mafavsisa-answer {
  max-height: 2000px; /* Ajusta este valor según sea necesario */
  padding: 20px;
}

.mafavsisa-answer p, 
.mafavsisa-answer ul, 
.mafavsisa-answer li {
  color: var(--primary-text-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.mafavsisa-answer h3 {
  font-size: 1.1em;
  margin: 25px 0 10px 0;
  color: var(--apple-blue);
}

.mafavsisa-answer ul {
  padding-left: 20px;
}

.mafavsisa-answer ul li {
  position: relative;
  padding-left: 15px;
}

.mafavsisa-answer ul li::before {
  content: '•';
  color: var(--apple-blue);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .mafavsisa-container {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .mafavsisa-column {
    width: 100%;
  }
  
  .mafavsisa-question {
    padding: 15px;
  }
  
  .mafavsisa-question h3 {
    font-size: 1.1em;
  }
  
  .mafavsisa-item.active .mafavsisa-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .mafavsisa-question h3 {
    font-size: 1em;
    padding-right: 25px;
  }
  
  .mafavsisa-question::after {
    right: 15px;
    font-size: 1.3em;
  }
}
/* --- CUADRO COMPARATIVO DE MANLIFTS --- */
.manlift-comparison-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color-white);
  border-radius: var(--border-radius-base);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.manlift-comparison-container h2 {
  font-size: 2.5em;
  color: var(--primary-text-color);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.manlift-comparison-container h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--apple-blue);
  margin: 15px auto 0;
}

.manlift-comparison-container h3 {
  font-size: 1.8em;
  color: var(--primary-text-color);
  margin-top: 50px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--apple-blue);
}

.manlift-comparison-container p {
  color: var(--secondary-text-color);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Tabla comparativa */
.table-responsive {
  overflow-x: auto;
  margin: 40px 0;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
  min-width: 800px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.comparison-table thead tr {
  background-color: var(--apple-blue);
  color: #fff;
}

.comparison-table thead th {
  font-weight: 600;
  text-align: center;
  padding: 18px 15px;
}

.comparison-table tbody th {
  background-color: rgba(254, 98, 21, 0.05);
  font-weight: 500;
}

.comparison-table tbody tr:nth-of-type(even) {
  background-color: var(--background-color-light);
}

.comparison-table tbody tr:hover {
  background-color: rgba(254, 98, 21, 0.08);
}

.comparison-table img {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Bloque CTA */
.cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: var(--background-color-light);
  border-radius: var(--border-radius-base);
}

.cta-block h3 {
  margin-top: 0;
  text-align: center;
}

.cta-block p {
  text-align: center;
  margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 992px) {
  .manlift-comparison-container {
    padding: 50px 20px;
  }
  
  .manlift-comparison-container h2 {
    font-size: 2.2em;
  }
  
  .manlift-comparison-container h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .manlift-comparison-container {
    padding: 40px 15px;
  }
  
  .manlift-comparison-container h2 {
    font-size: 1.8em;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    font-size: 0.9em;
  }
  
  .cta-block {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .manlift-comparison-container {
    padding: 30px 10px;
  }
  
  .manlift-comparison-container h2 {
    font-size: 1.6em;
  }
  
  .manlift-comparison-container h3 {
    font-size: 1.4em;
  }
  
  .comparison-table img {
    max-width: 120px;
  }
}
.isab-whatsapp {
  position:fixed;
  width: 50px;
  height:50px;
  bottom: 50px;
  left:40px;
  background-color:#00b041;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
}

/* Animación al pasar el mouse */
.isab-whatsapp:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}

/* Ícono de teléfono */
.isab-phone-icon {
  font-size: 28px;
}

.whatsapp {
  position:fixed;
  width: 210px;
  height:50px;
  bottom:50px;
  right:40px;
  background-color:#00b041;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
}

.whatsapp-icon {
  margin-top:13px;
}
/* Sección de clientes */
        .clients-section {
            padding: 80px 20px;
            background-color: var(--background-color-white);
        }

        .clients-container {
            max-width: var(--max-width-content);
            margin: 0 auto;
        }

        .clients-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .clients-header h2 {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .clients-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--apple-blue);
        }

        .clients-header p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.2em;
            color: var(--secondary-text-color);
        }

        /* Grid de logos */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 40px;
            align-items: center;
            justify-items: center;
        }

        .client-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px;
            background-color: var(--background-color-white);
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            height: 120px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .client-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(21, 103, 254, 0.03) 0%, rgba(21, 103, 254, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .client-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .client-item:hover::before {
            opacity: 1;
        }

        .client-logo {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
            z-index: 1;
        }

        .client-item:hover .client-logo {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        .client-name {
            position: absolute;
            bottom: -25px;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 0.85em;
            color: var(--secondary-text-color);
            opacity: 0;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .client-item:hover .client-name {
            opacity: 1;
            bottom: 10px;
        }

        /* Efecto de borde al hover */
        .client-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid transparent;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .client-item:hover::after {
            border-color: var(--apple-blue);
        }

        /* Stats section opcional */
        .clients-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 80px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: 700;
            color: var(--apple-blue);
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 1em;
            color: var(--secondary-text-color);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .clients-section {
                padding: 60px 20px;
            }
            
            .clients-header h2 {
                font-size: 2.2em;
            }
            
            .clients-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 30px;
            }
            
            .client-item {
                height: 100px;
                padding: 20px;
            }
            
            .clients-stats {
                gap: 30px;
                margin-top: 60px;
            }
            
            .stat-number {
                font-size: 2em;
            }
        }

        @media (max-width: 600px) {
            .clients-section {
                padding: 50px 15px;
            }
            
            .clients-header h2 {
                font-size: 1.8em;
            }
            
            .clients-header p {
                font-size: 1em;
            }
            
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .client-item {
                height: 90px;
                padding: 15px;
            }
            
            .client-logo {
                max-height: 50px;
            }
            
            .clients-stats {
                gap: 20px;
                margin-top: 50px;
            }
            
            .stat-item {
                padding: 15px;
            }
            
            .stat-number {
                font-size: 1.8em;
            }
        }
/* =================================================================
   SECCIÓN DE GALERÍA (VERSIÓN MEJORADA)
   ================================================================= */
.gallery-section {
    padding: 100px 20px;
    background-color: #fff;
}

.gallery-grid {
    max-width: var(--max-width-content);
    margin: 0 auto;
    display: grid;
    /* La magia está aquí: creamos un grid de 2 columnas y 2 filas */
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto); /* Las filas se adaptan al contenido */
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    /* Añadimos una altura mínima para evitar colapsos mientras cargan las imágenes */
    min-height: 300px;
}

/* Posicionamiento explícito de cada item en el grid */
.gallery-item:nth-child(1) {
    grid-column: 1 / 2; /* Ocupa la primera columna */
    grid-row: 1 / 2;    /* Ocupa la primera fila */
}

.gallery-item.large {
    grid-column: 2 / 3;    /* Ocupa la segunda columna */
    grid-row: 1 / span 2;  /* Se expande para ocupar DOS filas */
}

.gallery-item:nth-child(3) {
    grid-column: 1 / 2; /* Ocupa la primera columna */
    grid-row: 2 / 3;    /* Ocupa la segunda fila */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Esto es clave para que la imagen llene el espacio sin deformarse */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.05); /* Sutil efecto de zoom al pasar el cursor */
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 25px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    color: #fff;
    opacity: 0; /* Oculto por defecto */
    transform: translateY(20px); /* Ligeramente desplazado hacia abajo */
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1; /* Se muestra al pasar el cursor */
    transform: translateY(0); /* Vuelve a su posición original */
}

.gallery-overlay h3 {
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.2;
}


/* --- RESPONSIVIDAD PARA LA GALERÍA --- */
@media (max-width: 992px) {
    .gallery-grid {
        /* Reiniciamos el grid a una sola columna */
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item,
    .gallery-item.large {
        /* Reseteamos la posición explícita para que fluyan normalmente */
        grid-column: auto;
        grid-row: auto;
        /* Damos un aspect ratio para que no se vean demasiado altas en móvil */
        aspect-ratio: 16 / 10;
        min-height: auto;
    }

    .gallery-overlay {
        /* Hacemos el overlay visible por defecto en pantallas táctiles */
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 80%);
        padding: 20px;
    }

    .gallery-overlay h3 {
        font-size: 1.2em;
    }
}
/* Sección de servicios */
        .services-section {
            padding: 80px 20px;
            background-color: var(--background-color-white);
        }

        .services-container {
            max-width: var(--max-width-content);
            margin: 0 auto;
        }

        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-header h2 {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .services-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--apple-blue);
        }

        .services-header p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.2em;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--background-color-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }

        .service-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.05);
        }

        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-title {
            margin: 0 0 15px;
            color: var(--primary-text-color);
        }

        .service-description {
          text-align: justify;
            flex-grow: 1;
            margin-bottom: 20px;
        }

        .service-features {
            margin: 20px 0;
            padding: 0;
            list-style: none;
        }

        .service-features li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            color: var(--secondary-text-color);
            font-size: 0.95em;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--apple-blue);
            font-weight: bold;
        }

        .service-cta {
            margin-top: auto;
            text-align: center;
            padding-top: 20px;
        }

        .service-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--apple-blue);
            color: white;
            border-radius: 20px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .service-btn:hover {
            background-color: #006ee6;
            transform: translateY(-2px);
            text-decoration: none;
        }

        /* Estilos específicos para esta sección */
        .cta-link {
            display: inline-block;
            margin-top: 15px;
            padding: 12px 20px;
            background-color: var(--apple-blue);
            color: white;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-link:hover {
            background-color: #006ee6;
            transform: translateY(-2px);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .services-section {
                padding: 60px 20px;
            }
            
            .services-header h2 {
                font-size: 2.2em;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 600px) {
            .services-section {
                padding: 50px 15px;
            }
            
            .services-header h2 {
                font-size: 1.8em;
            }
            
            .services-header p {
                font-size: 1em;
            }
            
            .service-content {
                padding: 20px;
            }
            
            .service-image {
                height: 180px;
            }
        }

         /* Banner estilo Apple */
        .apple-banner {
          background: linear-gradient(135deg, #1a1a1c 0%, #2c2c30 100%);
          color: white;
          padding: 80px 20px;
          text-align: center;
          position: relative;
          overflow: hidden;
        }

        .apple-banner .banner-headline,
        .apple-banner .banner-subhead {
          color: white;
        }

        .apple-banner .banner-subhead {
          opacity: 0.85;
        }

        .banner-content {
          max-width: var(--max-width-content);
          margin: 0 auto;
          position: relative;
          z-index: 2;
        }

        .banner-badge {
          display: inline-block;
          background-color: var(--apple-blue);
          color: white;
          font-size: 0.9em;
          font-weight: 500;
          padding: 6px 14px;
          border-radius: 20px;
          margin-bottom: 20px;
          letter-spacing: 0.5px;
        }

        .banner-headline {
          font-size: 3.5em;
          font-weight: 600;
          letter-spacing: -0.02em;
          margin: 0 0 15px;
          line-height: 1.1;
        }

        .banner-subhead {
          font-size: 1.8em;
          font-weight: 400;
          margin: 0 0 30px;
          line-height: 1.3;
        }

        .banner-cta {
          margin-top: 30px;
          display: flex;
          justify-content: center;
          gap: 15px;
          flex-wrap: wrap;
        }

        /* Efectos de fondo estilo Apple */
        .banner-background {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 0;
          opacity: 0.5;
        }

        .banner-background-circle {
          position: absolute;
          border-radius: 50%;
          background: linear-gradient(135deg, rgba(21, 103, 254, 0.15) 0%, rgba(21, 103, 254, 0.05) 100%);
        }

        .circle-1 {
          width: 300px;
          height: 300px;
          top: -150px;
          right: -100px;
        }

        .circle-2 {
          width: 200px;
          height: 200px;
          bottom: -100px;
          left: -50px;
        }

        /* Slider de imágenes */
        .slider-container {
          margin-top: 50px;
          position: relative;
          width: 100%;
          max-width: 900px;
          margin-left: auto;
          margin-right: auto;
          overflow: hidden;
          border-radius: 12px;
          box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .slider {
          display: flex;
          width: 400%; /* 4 imágenes = 400% */
          animation: slide 20s infinite; /* Animación automática */
        }

        .slide {
          width: 25%; /* Cada slide ocupa 25% del contenedor (4 imágenes) */
          flex-shrink: 0;
        }

        .slide img {
          width: 100%;
          height: auto;
          display: block;
        }

        /* Controles del slider */
        .slider-controls {
          position: absolute;
          bottom: 20px;
          left: 0;
          right: 0;
          display: flex;
          justify-content: center;
          gap: 10px;
          z-index: 10;
        }

        .slider-dot {
          width: 10px;
          height: 10px;
          border-radius: 50%;
          background-color: rgba(255, 255, 255, 0.5);
          cursor: pointer;
          transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .slider-dot.active {
          background-color: var(--apple-blue);
          transform: scale(1.2);
        }

        .slider-dot:hover {
          background-color: rgba(255, 255, 255, 0.8);
        }

        /* Animación del slider */
        @keyframes slide {
          0% { transform: translateX(0); }
          20% { transform: translateX(0); } /* Pausa en la primera imagen */
          25% { transform: translateX(-25%); }
          45% { transform: translateX(-25%); } /* Pausa en la segunda imagen */
          50% { transform: translateX(-50%); }
          70% { transform: translateX(-50%); } /* Pausa en la tercera imagen */
          75% { transform: translateX(-75%); }
          95% { transform: translateX(-75%); } /* Pausa en la cuarta imagen */
          100% { transform: translateX(0); } /* Vuelve al inicio */
        }

        /* Pausar animación al hacer hover */
        .slider-container:hover .slider {
          animation-play-state: paused;
        }

        /* Responsive */
        @media (max-width: 900px) {
          .banner-headline {
            font-size: 2.8em;
          }
          
          .banner-subhead {
            font-size: 1.5em;
          }
          
          .banner-cta {
            flex-direction: column;
            align-items: center;
          }
        }

        @media (max-width: 600px) {
          .apple-banner {
            padding: 60px 20px;
          }
          
          .banner-headline {
            font-size: 2.2em;
          }
          
        .banner-subhead {
          font-size: 1.8em;
          font-weight: 400;
          margin: 0 0 30px;
          line-height: 1.3;
        }
          
          .slider-container {
            margin-top: 30px;
          }
        }

      /* Sección de llamada a la acción */
      .cta-banner3 {
            position: relative;
            padding: 0px 20px;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: white;
            text-align: center;
            background-image: url('../images/cursodealturasenbogotaprecios.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            /* Mejoras para nitidez */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
      .cta-banner1 {
            position: relative;
            padding: 0px 20px;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: white;
            text-align: center;
            background-image: url('../images/andamiocertificadoenbogota.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            /* Mejoras para nitidez */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
        .cta-banner {
            position: relative;
            padding: 100px 20px;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: white;
            text-align: center;
            background-image: url('../images/renta-de-andamios-certificados-tubulares-para-eventos.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            /* Mejoras para nitidez */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
            padding: 40px;
            background-color: rgba(19, 21, 22, 0.81);
            backdrop-filter: blur(5px);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.322);
            animation: fadeIn 1.5s ease-out;
        }

        .cta-title {
            font-size: 3.5em;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.754);
            animation: slideDown 1s ease-out;
            color: #ffffff;
        }

        .cta-description {
            font-size: 1.4em;
            margin-bottom: 40px;
            line-height: 1.6;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
            animation: slideUp 1s ease-out 0.3s both;
            color: #ffffff;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2em;
            text-decoration: none;
            background-color: var(--apple-blue);
            color: white;
            border: 2px solid var(--apple-blue);
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: fadeIn 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            background-color: #0056cc;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        /* Animaciones */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideDown {
            from { 
                opacity: 0;
                transform: translateY(-30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 900px) {
            .cta-title {
                font-size: 2.8em;
            }
            
            .cta-description {
                font-size: 1.2em;
            }
            
            .cta-banner {
                background-attachment: scroll;
            }
        }

        @media (max-width: 600px) {
            .cta-banner {
                padding: 70px 20px;
                min-height: 60vh;
            }
            
            .cta-title {
                font-size: 2.2em;
            }
            
            .cta-description {
                font-size: 1.1em;
            }
            
            .cta-button {
                padding: 14px 30px;
                font-size: 1.1em;
            }
            
            .cta-content {
                padding: 25px;
            }
        }
        /* Sección informativa */
        .info-section {
          padding: 80px 20px;
          max-width: var(--max-width-content);
          margin: 0 auto;
        }

        .info-section h2.section-title {
          text-align: center;
          margin-bottom: 60px;
          position: relative;
        }

        .info-section h2.section-title::after {
          content: '';
          display: block;
          width: 80px;
          height: 3px;
          background-color: var(--apple-blue);
          margin: 15px auto 0;
        }

        .info-row {
          display: flex;
          align-items: center;
          margin-bottom: 80px;
          gap: 40px;
        }

        .info-row:last-child {
          margin-bottom: 0;
        }

        .info-content {
          flex: 7; /* 70% */
        }

        .info-image {
          flex: 3; /* 30% */
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .info-image img {
          width: 100%;
          height: auto;
          display: block;
          transition: transform 0.5s ease;
        }

        .info-image:hover img {
          transform: scale(1.03);
        }

        .info-content ul {
          padding-left: 20px;
          margin-bottom: 25px;
        }

        .info-content li {
          margin-bottom: 10px;
          color: var(--secondary-text-color);
          line-height: 1.6;
        }

        .info-content li::marker {
          color: var(--apple-blue);
        }

        /* Para la fila invertida (imagen a la derecha) */
        .info-row.reverse {
          flex-direction: row-reverse;
        }

        /* Responsive */
        @media (max-width: 900px) {
          .info-row {
            flex-direction: column;
            text-align: center;
          }
          
          .info-row.reverse {
            flex-direction: column;
          }
          
          .info-content, .info-image {
            flex: 1;
            width: 100%;
          }
          
          .info-content ul {
            text-align: left;
          }
        }

        /* Sección de llamada a la acción */
        .elegant-cta {
          padding: 100px 20px;
          position: relative;
          overflow: hidden;
        }

        .elegant-cta.light {
          background-color: var(--background-color-white);
        }

        .elegant-cta.dark {
          background-color: #1a1a1c;
          color: #fff;
        }

        .elegant-cta.dark h2,
        .elegant-cta.dark h3,
        .elegant-cta.dark p {
          color: #fff;
        }

        .cta-background {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 0;
          opacity: 0.03;
        }

        .cta-background svg {
          width: 100%;
          height: 100%;
        }

        .cta-container {
          max-width: var(--max-width-content);
          margin: 0 auto;
          position: relative;
          z-index: 1;
          text-align: center;
        }

        .cta-badge {
          display: inline-block;
          background-color: rgba(21, 103, 254, 0.1);
          color: var(--apple-blue);
          padding: 8px 16px;
          border-radius: 20px;
          font-size: 0.9em;
          font-weight: 500;
          margin-bottom: 20px;
        }

        .cta-container h2 {
          margin-bottom: 20px;
          line-height: 1.2;
        }

        .cta-container > p {
          max-width: 700px;
          margin: 0 auto 40px;
          font-size: 1.2em;
        }

        .cta-features {
          display: flex;
          justify-content: center;
          gap: 40px;
          margin-bottom: 50px;
          flex-wrap: wrap;
        }

        .cta-feature {
          display: flex;
          align-items: center;
          gap: 12px;
          max-width: 330px;
        }

        .cta-feature-icon {
          width: 40px;
          height: 40px;
          background-color: rgba(21, 103, 254, 0.1);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
        }

        .cta-feature-icon svg {
          width: 20px;
          height: 20px;
          fill: var(--apple-blue);
        }

        .cta-feature-text {
          text-align: left;
        }

        .cta-feature-text h4 {
          margin: 0 0 5px;
          font-size: 1.1em;
        }

        .cta-feature-text p {
          margin: 0;
          font-size: 0.95em;
        }

        .cta-actions {
          display: flex;
          justify-content: center;
          gap: 20px;
          flex-wrap: wrap;
        }

        /* Versión con imagen */
        .cta-with-image {
          display: flex;
          align-items: center;
          gap: 60px;
          text-align: left;
        }

        .cta-content {
          flex: 1;
        }

        .cta-image {
          flex: 1;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .cta-image img {
          width: 100%;
          height: auto;
          display: block;
        }

        /* Responsive */
        @media (max-width: 900px) {
          .cta-with-image {
            flex-direction: column;
            text-align: center;
          }
          
          .cta-features {
            flex-direction: column;
            align-items: center;
          }
          
          .cta-feature {
            justify-content: center;
          }
          
          .cta-feature-text {
            text-align: center;
          }
          
          .cta-actions {
            flex-direction: column;
            align-items: center;
          }
        }
        /* Sección de servicios premium */
        .premium-services {
            padding: 100px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .services-container {
            max-width: var(--max-width-content);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .services-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .services-header h2 {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .services-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--apple-blue), #6c8ef5);
            border-radius: 2px;
        }

        .services-header p {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.2em;
            color: var(--secondary-text-color);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .service-card {
            background-color: var(--background-color-white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--apple-blue), #6c8ef5);
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.08);
        }

        .service-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--apple-blue);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8em;
            font-weight: 600;
            z-index: 2;
        }

        .service-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-title {
          text-align: center;
            margin: 0 0 15px;
            color: var(--primary-text-color);
            font-size: 1.6em;
        }

        .service-description {
            flex-grow: 1;
            margin-bottom: 25px;
            color: var(--secondary-text-color);
            line-height: 1.6;
        }

        .service-features {
            margin: 20px 0;
            padding: 0;
            list-style: none;
        }

        .service-features li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 12px;
            color: var(--secondary-text-color);
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--apple-blue);
            font-weight: bold;
            font-size: 1.1em;
        }

        .service-cta {
            margin-top: auto;
            text-align: center;
            padding-top: 20px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--apple-blue);
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s ease;
        }

        .service-link::after {
            content: '→';
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            color: #006ee6;
        }

        .service-link:hover::after {
            transform: translateX(4px);
        }

        /* Elementos decorativos de fondo */
        .services-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.03;
            pointer-events: none;
        }

        .services-background svg {
            width: 100%;
            height: 100%;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .premium-services {
                padding: 80px 20px;
            }
            
            .services-header h2 {
                font-size: 2.2em;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 600px) {
            .premium-services {
                padding: 60px 15px;
            }
            
            .services-header h2 {
                font-size: 1.8em;
            }
            
            .services-header p {
                font-size: 1em;
            }
            
            .service-content {
                padding: 25px 20px;
            }
            
            .service-image {
                height: 200px;
            }
            
            .service-title {
                font-size: 1.4em;
            }
        }
        /* Sección de galería */
        .gallery-section {
            padding: 80px 20px;
            background-color: var(--background-color-white);
        }

        .gallery-container {
            max-width: var(--max-width-content);
            margin: 0 auto;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .gallery-header h2 {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .gallery-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--apple-blue);
        }

        .gallery-header p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.2em;
            color: var(--secondary-text-color);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            aspect-ratio: 4/3;
            transition: all 0.4s ease;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 30px 20px 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-title {
          color: #fff;
            font-size: 1.4em;
            margin: 0 0 8px;
            font-weight: 600;
        }

        .gallery-description {
          color: #fff;
            font-size: 0.95em;
            margin: 0;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease 0.1s;
        }

        .gallery-item:hover .gallery-description {
            opacity: 1;
            transform: translateY(0);
        }

        /* Efecto de enfoque en el hover */
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .gallery-section {
                padding: 60px 20px;
            }
            
            .gallery-header h2 {
                font-size: 2.2em;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
        }

        @media (max-width: 600px) {
            .gallery-section {
                padding: 50px 15px;
            }
            
            .gallery-header h2 {
                font-size: 1.8em;
            }
            
            .gallery-header p {
                font-size: 1em;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .gallery-title {
                font-size: 1.2em;
            }
        }

        /* Sección de FAQ */
        .faq-section {
            padding: 80px 20px;
            max-width: var(--max-width-content);
            margin: 0 auto;
        }

        .faq-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-item {
            background-color: var(--background-color-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2em;
            font-weight: 500;
            color: var(--primary-text-color);
            background-color: var(--background-color-white);
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: var(--background-color-light);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5em;
            color: var(--apple-blue);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            content: '-';
            transform: rotate(0deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0 30px;
            background-color: var(--background-color-white);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 30px;
        }

        .faq-answer-content {
            color: var(--secondary-text-color);
            line-height: 1.7;
        }

        .faq-answer-content p {
            margin-bottom: 15px;
        }

        .faq-answer-content ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .faq-answer-content li {
            margin-bottom: 8px;
            position: relative;
        }

        .faq-answer-content li::marker {
            color: var(--apple-blue);
        }

        .faq-categories {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .faq-category-btn {
            padding: 10px 20px;
            background-color: var(--background-color-white);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .faq-category-btn.active,
        .faq-category-btn:hover {
            background-color: var(--apple-blue);
            color: white;
            border-color: var(--apple-blue);
        }

        .faq-contact-cta {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background-color: var(--background-color-white);
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .faq-contact-cta h3 {
            margin-top: 0;
            color: var(--primary-text-color);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .faq-section {
                padding: 60px 20px;
            }
            
            h2 {
                font-size: 2.2em;
            }
            
            .faq-question {
                padding: 20px 25px;
                font-size: 1.1em;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 25px 25px;
            }
        }

        @media (max-width: 600px) {
            .faq-section {
                padding: 50px 15px;
            }
            
            h2 {
                font-size: 1.8em;
            }
            
            .faq-question {
                padding: 18px 20px;
                font-size: 1em;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 20px 20px;
            }
            
            .faq-categories {
                gap: 10px;
            }
            
            .faq-category-btn {
                padding: 8px 16px;
                font-size: 0.9em;
            }
            
            .faq-contact-cta {
                padding: 30px 20px;
                margin-top: 40px;
            }
        }

        /* Sección de seguridad */
        .safety-section {
            background-color: #1a1a1c;
            color: #fff;
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        .safety-container {
            max-width: var(--max-width-content);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .safety-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .safety-icon {
            font-size: 4em;
            margin-bottom: 20px;
            display: block;
        }

        .safety-header h2 {
            color: #fff;
            margin-bottom: 20px;
        }

        .safety-header p {
            color: #b0b0b5;
            max-width: 800px;
            margin: 0 auto;
            text-align: justify;
        }

        .safety-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .safety-feature {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
        }

        .safety-feature:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .safety-feature h3 {
            color: #fff;
            font-size: 1.3em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .safety-feature h3::before {
            content: '✓';
            color: #00e676;
            font-weight: bold;
            font-size: 1.2em;
        }

        .safety-feature p {
          text-align: justify;
            color: #b0b0b5;
            margin: 0;
            line-height: 1.6;
        }

        .safety-cta {
            text-align: center;
            margin-top: 40px;
        }

        /* Elementos decorativos de fondo */
        .safety-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.03;
        }

        .safety-background svg {
            width: 100%;
            height: 100%;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .safety-section {
                padding: 80px 20px;
            }
            
            .safety-header h2 {
                font-size: 2.2em;
            }
            
            .safety-features {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 600px) {
            .safety-section {
                padding: 60px 15px;
            }
            
            .safety-header h2 {
                font-size: 1.8em;
            }
            
            .safety-icon {
                font-size: 3em;
            }
            
            .safety-feature {
                padding: 20px;
            }
            
            .safety-feature h3 {
                font-size: 1.1em;
            }
        }


     /* Contenedor principal */
        .vanessaamor-container {
          max-width: var(--max-width-content);
          margin: 0 auto;
          padding: 20px;
        }

        /* Sección Hero */
        .vanessaamor-hero {
          background: linear-gradient(135deg, #1a1a1c 0%, #2c2c30 100%);
          color: white;
          padding: 100px 20px;
          text-align: center;
          border-radius: 12px;
          margin-bottom: 60px;
        }

        .vanessaamor-hero-title {
          font-size: 3.5em;
          margin-bottom: 20px;
          color: white;
        }

        .vanessaamor-hero-subtitle {
          font-size: 1.8em;
          margin-bottom: 30px;
          opacity: 0.9;
          color: white;
        }

        /* Sección de características */
        .vanessaamor-features {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
          margin-bottom: 60px;
        }

        .vanessaamor-feature-card {
          background-color: var(--background-color-white);
          border-radius: 12px;
          padding: 30px;
          box-shadow: 0 5px 15px rgba(0,0,0,0.08);
          transition: transform 0.3s ease;
        }

        .vanessaamor-feature-card:hover {
          transform: translateY(-5px);
        }

        .vanessaamor-feature-icon {
          font-size: 2.5em;
          color: var(--apple-blue);
          margin-bottom: 20px;
        }

        /* Sección de especificaciones */
        .vanessaamor-specs {
          background-color: var(--background-color-white);
          border-radius: 12px;
          padding: 40px;
          margin-bottom: 60px;
          box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .vanessaamor-specs-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 20px;
          margin-top: 30px;
        }

        .vanessaamor-spec-item {
          display: flex;
          align-items: center;
          gap: 15px;
        }

        .vanessaamor-spec-icon {
          width: 40px;
          height: 40px;
          background-color: rgba(21, 103, 254, 0.1);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
        }

        /* NUEVA SECCIÓN: Imagen Destacada Estilo Apple */
        .vanessaamor-showcase {
          margin: 100px 0;
          text-align: center;
        }

        .vanessaamor-showcase-image {
          max-width: 100%;
          height: auto;
          border-radius: 18px;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
          margin-bottom: 30px;
        }

        .vanessaamor-showcase-caption {
          font-size: 1.2em;
          color: var(--secondary-text-color);
          max-width: 700px;
          margin: 0 auto;
        }

        /* NUEVA SECCIÓN: Descriptiva con Imagen Estilo Apple */
        .vanessaamor-descriptive {
          display: flex;
          align-items: center;
          gap: 60px;
          margin: 100px 0;
          background-color: var(--background-color-white);
          border-radius: 20px;
          overflow: hidden;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .vanessaamor-descriptive-content {
          flex: 1;
          padding: 60px;
        }

        .vanessaamor-descriptive-image {
          flex: 1;
          position: relative;
          overflow: hidden;
        }

        .vanessaamor-descriptive-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
        }

        .vanessaamor-descriptive-title {
          font-size: 2.8em;
          margin-bottom: 20px;
          line-height: 1.2;
        }

        .vanessaamor-descriptive-text {
          font-size: 1.2em;
          margin-bottom: 30px;
          line-height: 1.6;
        }

        /* Sección de aplicaciones */
        .vanessaamor-applications {
          margin-bottom: 60px;
        }

        .vanessaamor-app-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 25px;
          margin-top: 40px;
        }

        .vanessaamor-app-card {
          background-color: var(--background-color-white);
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .vanessaamor-app-image {
          height: 200px;
          overflow: hidden;
        }

        .vanessaamor-app-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.5s ease;
        }

        .vanessaamor-app-card:hover .vanessaamor-app-image img {
          transform: scale(1.05);
        }

        .vanessaamor-app-content {
          padding: 20px;
        }

        /* Sección de comparativa */
        .vanessaamor-comparison {
          background-color: var(--background-color-white);
          border-radius: 12px;
          padding: 40px;
          margin-bottom: 60px;
          box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .vanessaamor-comparison-table {
          width: 100%;
          border-collapse: collapse;
          margin-top: 30px;
        }

        .vanessaamor-comparison-table th,
        .vanessaamor-comparison-table td {
          padding: 15px;
          text-align: left;
          border-bottom: 1px solid var(--border-color);
        }

        .vanessaamor-comparison-table th {
          background-color: var(--background-color-light);
          font-weight: 600;
        }

        /* Sección de testimonios */
        .vanessaamor-testimonials {
          margin-bottom: 60px;
        }

        .vanessaamor-testimonial-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
          margin-top: 40px;
        }

        .vanessaamor-testimonial-card {
          background-color: var(--background-color-white);
          border-radius: 12px;
          padding: 30px;
          box-shadow: 0 5px 15px rgba(0,0,0,0.08);
          position: relative;
        }

        .vanessaamor-testimonial-text {
          font-style: italic;
          margin-bottom: 20px;
        }

        .vanessaamor-testimonial-author {
          display: flex;
          align-items: center;
          gap: 15px;
        }

        .vanessaamor-testimonial-avatar {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background-color: var(--background-color-light);
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: bold;
          color: var(--apple-blue);
        }

        /* Sección CTA */
        .vanessaamor-cta {
          background: linear-gradient(135deg, var(--apple-blue) 0%, #0D6EFD 100%);
          color: white;
          padding: 80px 40px;
          text-align: center;
          border-radius: 12px;
          margin-bottom: 60px;
        }

        .vanessaamor-cta-title {
          color: white;
          margin-bottom: 20px;
        }

        .vanessaamor-cta-buttons {
          display: flex;
          justify-content: center;
          gap: 20px;
          margin-top: 30px;
          flex-wrap: wrap;
        }

        /* FAQ Section */
        .vanessaamor-faq {
          background-color: var(--background-color-white);
          border-radius: 12px;
          padding: 40px;
          margin-bottom: 60px;
          box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .vanessaamor-faq-item {
          margin-bottom: 20px;
          border-bottom: 1px solid var(--border-color);
          padding-bottom: 20px;
        }

        .vanessaamor-faq-question {
          font-weight: 600;
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        .vanessaamor-faq-answer {
          margin-top: 15px;
          color: var(--secondary-text-color);
          display: none;
        }

        .vanessaamor-faq-item.active .vanessaamor-faq-answer {
          display: block;
        }

        /* Botones */
        .btn {
          display: inline-block;
          padding: 12px 25px;
          border-radius: 999px;
          font-weight: 500;
          font-size: 1em;
          cursor: pointer;
          transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
          text-align: center;
          text-decoration: none;
        }

        .btn.primary {
          background-color: var(--apple-blue);
          color: #fff;
          border: 2px solid var(--apple-blue);
        }

        .btn.primary:hover {
          background-color: #006ee6;
          transform: translateY(-1px);
        }

        .btn.secondary {
          background-color: transparent;
          color: var(--link-color);
          border: 2px solid var(--link-color);
        }

        .btn.secondary:hover {
          background-color: var(--link-color);
          color: white;
        }

        /* Responsive */
        @media (max-width: 900px) {
          h1 { font-size: 2.8em; }
          h2 { font-size: 2.2em; }
          
          .vanessaamor-hero {
            padding: 70px 20px;
          }
          
          .vanessaamor-hero-title {
            font-size: 2.8em;
          }
          
          .vanessaamor-cta-buttons {
            flex-direction: column;
            align-items: center;
          }
          
          .vanessaamor-descriptive {
            flex-direction: column;
            gap: 0;
          }
          
          .vanessaamor-descriptive-content {
            padding: 40px;
          }
          
          .vanessaamor-descriptive-image {
            order: -1;
          }
        }

        @media (max-width: 600px) {
          h1 { font-size: 2.2em; }
          h2 { font-size: 1.8em; }
          
          .vanessaamor-hero {
            padding: 50px 15px;
          }
          
          .vanessaamor-hero-title {
            font-size: 2.2em;
          }
          
          .vanessaamor-container {
            padding: 15px;
          }
          
          .vanessaamor-specs,
          .vanessaamor-comparison,
          .vanessaamor-faq {
            padding: 25px;
          }
          
          .vanessaamor-descriptive-content {
            padding: 30px 20px;
          }
          
          .vanessaamor-descriptive-title {
            font-size: 2.2em;
          }
        }
/* =================================================================
   SECCIÓN HERO
   ================================================================= */
.hero-section {
    text-align: center;
    padding: 100px 20px;
    background-color: #fff;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto 50px;
}
.hero-title {
    font-size: 4em;
    font-weight: 700;
}
.hero-subtitle {
    font-size: 1.5em;
    margin: 20px auto;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.hero-image-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* =================================================================
   SECCIÓN DE SERVICIOS
   ================================================================= */
.premium-services {
    padding: 100px 20px;
    background-color: var(--background-color-light);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--max-width-content);
    margin: 0 auto;
}
.service-card {
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.service-content {
    padding: 30px;
    text-align: center;
}
.service-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.service-description {
    font-size: 1em;
}

/* =================================================================
   SECCIÓN DE SEGURIDAD
   ================================================================= */
.safety-section {
    background-color: #1a1a1c;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: var(--max-width-content);
    margin: 80px auto;
    border-radius: 24px;
}
.safety-content, .safety-image-container {
    flex: 1;
}
.safety-content {
    padding-right: 30px;
}
.safety-icon {
    font-size: 3em;
    margin-bottom: 20px;
}
.safety-image-container img {
    border-radius: 18px;
    object-fit: cover;
    height: 400px;
    width: 100%;
}

/* =================================================================
   SECCIÓN DE GALERÍA
   ================================================================= */
.gallery-section {
    padding: 100px 20px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
    max-width: var(--max-width-content);
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}
.gallery-item.large {
    grid-column: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}
.gallery-overlay h3 {
    font-size: 1.4em;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}
.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

/* =================================================================
   SECCIÓN DE FAQ
   ================================================================= */
.faq-section {
    padding: 100px 20px;
    background-color: var(--background-color-light);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.25em;
    font-weight: 500;
}
.faq-icon {
    font-size: 1.5em;
    color: var(--secondary-text-color);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding-top 0.4s ease;
}
.faq-answer p {
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    padding-top: 15px;
    max-height: 200px; /* Ajustar si el contenido es más largo */
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* =================================================================
   FOOTER
   ================================================================= */
.main-footer {
    background-color: var(--background-color-light);
    padding: 80px 20px 0;
    text-align: center;
}
.footer-content {
    max-width: 700px;
    margin: 0 auto 60px;
}
.footer-content h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}
.footer-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width-content);
    margin: 0 auto;
    font-size: 0.9em;
    color: var(--secondary-text-color);
}
.footer-bottom ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.section-header {
    text-align: center;      /* Centra el título y subtítulo */
    max-width: 800px;        /* Evita que el texto sea demasiado ancho en pantallas grandes */
    margin: 0 auto 60px;     /* Centra el bloque y añade un espacio generoso debajo */
}

.section-title {
    font-size: 3em;          /* Tamaño grande e impactante, típico de Apple */
    margin-bottom: 15px;     /* Espacio entre el título y el subtítulo */
    color: var(--primary-text-color); /* Usa el color de texto principal */
    letter-spacing: -0.02em; /* Un ajuste fino para que las letras estén un poco más juntas */
}

.section-subtitle {
    font-size: 1.25em;       /* Tamaño subordinado al título, pero más grande que el párrafo normal */
    color: var(--secondary-text-color); /* Usa el color gris más suave */
    line-height: 1.5;        /* Mejora la legibilidad */
}

/* Clases adicionales para las secciones oscuras */
.section-title-light, 
.section-subtitle-light {
    color: #fff; /* Texto blanco para fondos oscuros */
}

.section-subtitle-light {
    opacity: 0.8; /* El subtítulo es ligeramente transparente para dar jerarquía */
}

/* =================================================================
   MEDIA QUERIES PARA RESPONSIVIDAD
   ================================================================= */
@media (max-width: 992px) {
    .section-title, .hero-title, .footer-content h2 { font-size: 2.5em; }
    .section-subtitle, .hero-subtitle { font-size: 1.1em; }

    .nav-links { display: none; } /* Ocultar para menú hamburguesa */
    .menu-icon { display: flex; }

    .services-grid { grid-template-columns: 1fr; }
    .safety-section { flex-direction: column; text-align: center; }
    .safety-content { padding-right: 0; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; }
}

@media (max-width: 768px) {
    .section-title, .hero-title, .footer-content h2 { font-size: 2em; }
    .hero-actions { flex-direction: column; align-items: center; }
    
    .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
    .section-title, .hero-title { font-size: 1.8em; }
    .section-subtitle, .hero-subtitle { font-size: 1em; }
    .faq-question { font-size: 1.1em; }
}
/* =================================================================
   SECCIÓN QUIÉNES SOMOS 1: FILOSOFÍA
   ================================================================= */
.about-philosophy-section {
    padding: 100px 20px;
    background-color: var(--background-color-light);
}

.about-container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 60px;
}

.philosophy-image img {
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Responsive para la sección de filosofía */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr; /* Apila las columnas en pantallas pequeñas */
        text-align: center;
    }
    .philosophy-content {
        order: 2; /* Pone el texto después de la imagen en móvil */
    }
    .philosophy-image {
        order: 1;
    }
}
/* =================================================================
   SECCIÓN QUIÉNES SOMOS 2: PILARES
   ================================================================= */
.about-pillars-section {
    padding: 100px 20px;
    background-color: #fff;
}

.pillars-grid {
    max-width: var(--max-width-content);
    margin: 0 auto;
    display: grid;
    /* Un grid responsivo que se adapta automáticamente */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.pillar-icon {
    font-size: 2.5em; /* Tamaño grande para el emoji/icono */
    margin-bottom: 15px;
}

.pillar-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--primary-text-color);
}
/* =================================================================
   SECCIÓN QUIÉNES SOMOS 3: EQUIPO
   ================================================================= */
.about-team-section {
    padding: 120px 20px;
    /* IMPORTANTE: Usa una foto de tu equipo de alta calidad como fondo */
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('URL_FOTO_DE_TU_EQUIPO.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax */
    border-radius: 24px; /* Bordes redondeados como en la sección de seguridad */
    max-width: var(--max-width-content);
    margin: 80px auto;
    text-align: center;
}

.team-content {
    max-width: 700px;
    margin: 0 auto;
}
/* =================================================================
   PÁGINA DE CONTACTO - SECCIÓN 1: INFO DIRECTA
   ================================================================= */
.contact-intro-section {
    padding: 100px 20px;
    background-color: #fff;
}

.contact-info-grid {
    max-width: 900px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--background-color-light);
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--apple-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.contact-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--secondary-text-color);
    margin-bottom: 20px;
}

.contact-card a {
    font-size: 1.2em;
    font-weight: 500;
    color: var(--link-color);
}
/* =================================================================
   PÁGINA DE CONTACTO - SECCIÓN 2: FORMULARIO
   ================================================================= */
.contact-form-section {
    padding: 100px 20px;
    background-color: var(--background-color-light);
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1; /* Ocupa todo el ancho */
}

.form-group label {
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary-text-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    font-family: var(--font-family-base);
    font-size: 1em;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
}

.submit-group {
    text-align: center;
    margin-top: 20px;
}

.submit-group .btn {
    width: auto;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
    }
}
/* =================================================================
   PÁGINA DE CONTACTO - SECCIÓN 3: MAPA
   ================================================================= */
.contact-map-section {
    padding: 100px 20px;
}

.map-container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    aspect-ratio: 16 / 9; /* Mantiene la proporción del video/mapa */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.address-info {
    text-align: center;
    margin-top: 40px;
}

.address-info h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.address-info p {
    font-size: 1.1em;
    color: var(--secondary-text-color);
    line-height: 1.5;
}

/* =================================================================
   4. ESTILOS PÁGINA DE DOCUMENTOS LEGALES (POLÍTICA, ETC.)
   ================================================================= */
.legal-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px;
}

.legal-header {
    text-align: center;
    margin-bottom: 80px;
}

.legal-header h1 {
    font-size: 3.2em;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.legal-header .last-updated {
    margin-top: 15px;
    font-size: 1em;
    color: var(--secondary-text-color);
}

.legal-content-wrapper section {
    margin-bottom: 50px;
}

.legal-content-wrapper h2 {
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 20px;
    color: var(--primary-text-color);
}

.legal-content-wrapper h3 {
    font-size: 1.4em;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-text-color);
}

.legal-content-wrapper p,
.legal-content-wrapper li {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--secondary-text-color);
}

.legal-content-wrapper p {
    margin-bottom: 1.5em;
}

.legal-content-wrapper ul {
    list-style: none;
    padding-left: 0;
}

.legal-content-wrapper li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.legal-content-wrapper li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-text-color);
    font-size: 1.2em;
    line-height: inherit;
}

.info-box {
    margin: 25px 0;
    padding: 20px 25px;
    border-left: 3px solid var(--border-color);
    background-color: var(--background-color-light);
    border-radius: 0 8px 8px 0;
}

.info-box.highlight {
    border-left-color: var(--apple-blue);
}

.info-box ul {
    margin-bottom: 0;
}
.info-box p {
    margin-bottom: 0;
}
.info-box a {
    font-weight: 600;
}

code {
    background-color: #eef1f3;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #3e515e;
}

/* =================================================================
   5. MEDIA QUERIES PARA RESPONSIVIDAD (GLOBAL)
   ================================================================= */
@media (max-width: 992px) {
    .section-title, .footer-content h2 { font-size: 2.5em; }
    .section-subtitle { font-size: 1.1em; }

    .nav-links { display: none; }
    .menu-icon { display: flex; }

    .legal-header h1 { font-size: 2.5em; }
    .legal-content-wrapper h2 { font-size: 1.5em; }
}

@media (max-width: 768px) {
    .section-title, .footer-content h2 { font-size: 2em; }
    
    .footer-bottom { flex-direction: column; gap: 10px; }

    .legal-content-wrapper { padding: 60px 20px; }
    .legal-header h1 { font-size: 2.2em; }
    .legal-content-wrapper p, .legal-content-wrapper li { font-size: 1em; }
}