/* =========================================================
   VARIABLES GLOBALES
========================================================= */
:root {
  --rojo: #e40000;
  --rojo-oscuro: #c30000;
  --negro: #111;
  --gris: #666;
  --light: #f2f2f2;
  --font: "Poppins", sans-serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background: #fff;
  color: var(--negro);
  overflow-x: hidden;
}

/* ============================================
   FRANJA ROJA SUPERIOR
============================================ */

.franja-superior {
  width: 100%;
  height: 20px;
  background-color: #E30613;
  position: fixed;
  display: block;
  z-index: 1200;
}

/* ============================================
   CABECERA INBANDA – LOGO + MENÚ 
============================================ */

.header-inbanda {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: fixed;
  top: 14px;           /* ← IMPORTANTE: deja visible la franja roja */
  left: 0;
  z-index: 1100;
}

/* Contenedor interno */
.contenedor-header {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  display: block;
}

/* Menú más pegado al logo */
nav {
  display: flex;
  align-items: center;
  gap: 28px;   /* ← Ajusta aquí si quieres más cerca */
}

/* Enlaces */
nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
  letter-spacing: 0.4px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #E30613;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #E30613;
}

nav a:hover::after,
nav a.activo::after {
  width: 100%;
}

nav a.activo {
  color: #E30613;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contenedor-header {
    flex-direction: row;       /* ← NO cambiar a columna */
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .logo {
    height: 45px;
  }
}

/* =========================================================
   HEADER – VERSIÓN MÓVIL FINAL
========================================================= */
@media (max-width: 900px) {

  /* Cabecera más compacta */
  .header-inbanda {
    top: 20px !important;    /* deja visible la franja roja */
    padding: 0 !important;
    background: #fff !important;
  }

  /* Contenedor interno */
  .contenedor-header {
    padding: 25px 25px !important;
    height: auto !important;
    display: flex;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* Logo */
  .logo {
    height: 45px !important;
  }

  /* Ocultar menú de escritorio */
  .menu-desktop {
    display: none !important;
  }

  /* Botón hamburguesa */
  .btn-hamburguesa {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 38px;
    height: 28px;
    cursor: pointer;
  }

  .btn-hamburguesa span {
    display: block;
    height: 4px;
    border-radius: 4px;
    background: #E30613;
    width: 100%;
  }

  /* SIDEBAR */
  .sidebar-movil {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 15px rgba(0,0,0,0.25);
    padding: 30px 20px;
    transition: right 0.3s ease;
    z-index: 2000;
  }

  /* Sidebar abierto */
  .sidebar-movil.activo {
    right: 0 !important;
  }

  /* Botón cerrar */
  .cerrar-sidebar {
    font-size: 2rem;
    cursor: pointer;
    color: #E30613;
    font-weight: bold;
  }

  /* Menú móvil */
  .menu-movil {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .menu-movil a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 1.1rem;
  }

  /* Overlay */
  .overlay-blur {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1500;
  }

  .overlay-blur.activo {
    display: block !important;
  }
}


/* =========================================================
   HERO CON ESCENAS DESLIZABLES
========================================================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;      /* ALTURA FIJA */
  overflow: hidden;
}

.scroll-horizontal {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow-x: hidden !important;     /* ← cambio */
  scroll-behavior: smooth;
}


.escena {
  flex: 0 0 100%;
  height: 100vh;      /* CADA ESCENA = ALTO PANTALLA */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Móvil */
@media (max-width: 900px) {
  .escena {
    height: auto !important;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}


/* DISEÑO UNIFICADO PARA TODAS LAS ESCENAS */
.hero-content,
.hero-industrial {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-content,
  .hero-industrial {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
  }
}


/* TEXTO */
.hero-texto h1,
.texto-industrial h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.negrita {
  font-weight: 800;
}

.rojo-fondo {
  background-color: #d71920;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
}

.descripcion,
.detalle {
  margin: 18px 0 28px;
  font-style: italic;
  font-size: 18px;
  color: var(--gris);
}

.btn-rojo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #E30613;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-rojo:hover {
  background: var(--rojo-oscuro);
}

.btn-rojo .icono {
  background: #000;
  color: #fff;
  padding: 5px 7px;
  border-radius: 50%;
  font-size: 0.8rem;
}

.subtexto {
  margin-top: 16px;
  font-size: 14px;
  font-style: italic;
  color: var(--gris);
  font-weight: bold;
}

/* IMAGEN – MISMA FORMA PARA TODOS */
.hero-imagen img,
.imagen-industrial img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: cover;
  border-radius: 0 0 0 90px;
}

@media (max-width: 900px) {
  .hero-imagen img,
  .imagen-industrial img {
    max-height: 45vh;   /* 🔥 MUCHÍSIMO MEJOR PARA MÓVIL */
    border-radius: 0;
  }
}



/* ======= ORDENAR TEXTO / IMAGEN EN MÓVIL ======= */
/* =========================================
   MÓVIL — Ajustes SOLO para ESCENA 1
========================================= */
@media (max-width: 900px) {

  .escena1 .hero-texto {
    width: 100%;
    text-align: left !important;
    align-items: flex-start !important;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }


  /* TÍTULO — aquí se baja */
  .escena1 .hero-texto h1 {
    font-size: 2.3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    margin-top: 90px !important;   /* 🔥 ESTE BAJA EL TÍTULO */
    text-align: left !important;
  }

  /* PÁRRAFO */
  .escena1 .hero-texto .descripcion {
    font-size: 0.95rem !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
  }

  /* CTA GLOBAL */
  .escena1 .cta-global {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 6px;
  }

  /* BOTÓN */
  .escena1 .cta-global .btn-rojo {
    font-size: 0.9rem !important;
    padding: 10px 18px !important;
    align-self: flex-start !important;
    margin-bottom: 15px !important;
  }

  /* ICONO */
  .escena1 .cta-global .btn-rojo .icono {
    font-size: 0.75rem !important;
    padding: 4px 6px !important;
  }

  /* SUBTEXTO */
  .escena1 .cta-global .subtexto {
    font-size: 0.82rem !important;
    line-height: 1.3 !important;
    text-align: left !important;
    margin-top: 4px !important;
  }
}



/* SOLO ESCENA 2 y 3 */

/* SOLO EN MÓVIL */
@media (max-width: 900px) {
  .cta-clon {
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 6px !important;
      margin-top: 12px !important;
      width: 100%;
  }

  .cta-clon .btn-rojo {
      font-size: 0.9rem !important;
      padding: 10px 18px !important;
      border-radius: 5px !important;
  }

  .cta-clon .icono {
      font-size: 0.75rem !important;
      padding: 4px 6px !important;
  }

  .cta-clon .subtexto {
      font-size: 0.82rem !important;
      font-style: italic;
      font-weight: bold;
      color: #666;
      margin-top: 4px !important;
  }
}


@media (max-width: 900px) {
  .hero-industrial {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
    padding-top: 48px;
    gap: 12px; /* un poco más de aire */
  }

  .rojo-fondo {
    padding: 0.1px 4px !important;
    font-size: 1.8rem !important; /* 🔥 más pequeño */
  }

  /* 🔹 TÍTULO MÁS PEQUEÑO */
  .hero-industrial h1 {
    font-size: 1.8rem !important;  /* 🔥 antes 3.5rem */
    margin: 50px 0 10px 0 !important;
    line-height: 1.15 !important;
  }

  /* 🔹 PÁRRAFOS MÁS PEQUEÑOS */
  .hero-industrial p {
    font-size: 0.95rem !important; /* 🔥 antes 1rem+ */
    margin: 0 0 12px 0 !important;
    line-height: 1.35 !important;
  }

  /* 🔹 3. Imagen se mantiene igual */
  .hero-industrial .imagen-industrial {
    margin-top: 0px !important;
    width: 100%;
  }

  .hero-industrial .imagen-industrial {
    order: 2;
    width: 100%;
  }

  .hero-industrial .texto-industrial {
    order: 1;
  }

  /* 🔥 CTA CLON MÁS PEQUEÑO */
  .cta-clon::before {
    font-size: 0.85rem !important;
    padding: 10px 16px !important;
  }

  .cta-clon::after {
    font-size: 0.82rem !important;
    line-height: 1.3 !important;
  }
}


/* =========================================================
   FLECHAS DEL SLIDER
========================================================= */
.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 10px;
  z-index: 10;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .flecha {
    font-size: 30px;
    padding: 6px 12px;
  }

  .izq { left: 10px; }
  .der { right: 10px; }
}


.flecha:hover {
  background: rgba(0,0,0,0.7);
}

.izq { left: 20px; }
.der { right: 20px; }

/* =========================================================
   INDICADORES
========================================================= */
.indicadores {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

@media (max-width: 900px) {
  .indicadores {
    bottom: 12px;
  }

  .punto {
    width: 10px;
    height: 10px;
  }
}


.punto {
  width: 14px;
  height: 14px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.punto.activo {
  background: var(--rojo);
}

/* Franja roja inferior */
.decoracion-roja {
  width: 100%;
  height: 25px;
  background: #E30613;
  position: relative;
  margin-top: 0;
}

.decoracion-roja::after {
  content: "";
  position: absolute;
  top: 0;
  right: 15%;
  width: 120px;
  height: 100%;
  background: #fff;
  transform: skewX(-25deg);
}

/* ===============================
   SECCIÓN NUESTROS PRODUCTOS
================================== */

.nuestros-productos {
  background: #fff;
  padding: 100px 10% 80px;
  text-align: left;
  position: relative;
}

.nuestros-productos .contenedor-titulo h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.nuestros-productos .rojo-5 {
  background: #E30613;
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
}

.nuestros-productos .descripcion p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: 50px;
}

/* Botón centrado */
.boton-ver {
  text-align: center;
  margin-top: 60px;
}

/* =========================================================
   TARJETAS DE PRODUCTOS (HOVER)
========================================================= */

.grid-productos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 90%;
  max-width: 1300px;
  margin: 60px auto;
}

.card-producto {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  
  cursor: pointer;
  transition: 0.3s;
}

.card-producto img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

.card-producto:hover img {
  transform: scale(1.1);
}

.overlay-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(227,6,19,0.8) 100%);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  text-align: center;
  transition: 0.4s;
}

.card-producto:hover .overlay-info {
  opacity: 1;
}

.pie-rojo {
  background: var(--rojo);
  color: #fff;
  padding: 14px;
  text-align: center;
  font-weight: 600;
}


/* ============================================
   MÓVIL — Ajustes para NUESTROS PRODUCTOS
============================================ */
@media (max-width: 900px) {

  .nuestros-productos {
    padding: 60px 20px 50px !important;
    text-align: left !important;
  }

  .nuestros-productos .contenedor-titulo .rojo {
    font-size: 1.7rem !important;
    padding: 0.1px 4px !important;
    line-height: 1.2 !important;
    display: inline-block;
  }


  /* Título */
  .nuestros-productos .contenedor-titulo h2 {
    font-size: 2.6rem !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;

  }

  /* Span rojo */
  .nuestros-productos .rojo-5 {
    padding: 3px 10px !important;
    font-size: 2.6rem !important;
  }

  /* Descripción */
  .nuestros-productos .descripcion p {
    font-size: 0.95rem !important;
    max-width: 90% !important;
    margin: 0 0 30px 0 !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }

  /* GRID — ahora 2 columnas */
  .grid-productos {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
    width: 100% !important;
    margin-top: 30px !important;
  }

  /* Tarjetas más pequeñas */
  .card-producto img {
    height: 145px !important;
    object-fit: cover !important;
  }

  /* Pie rojo (título de producto) */
  .pie-rojo {
    font-size: 0.85rem !important;
    padding: 10px !important;
  }

  /* Botón inferior */
  .boton-ver {
    margin-top: 35px !important;
    text-align: center !important;
  }

  .boton-ver .btn-rojo {
    padding: 10px 25px !important;
    font-size: 0.9rem !important;
  }

}



/* =========================================================
   QUIENES SOMOS / SERVICIOS / CONTACTO / FOOTER
   (Diseño unificado)
========================================================= */

.quienes-somos  {
  background-color: #f5f5f5;
  padding: 100px 8%;
}

.contenedor-quienes {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Imagen con título */
.contenedor-img {
  position: relative;
}

.contenedor-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.titulo-imagen {
  position: absolute;
  top: 15px;
  left: 0;
  background-color: #E30613;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 10px 25px;
  border-radius: 5px;
}

/* Texto */
.columna.texto {
  flex: 1 1 45%;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #222;
}

/* Bloques misión y visión */
.bloques {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.bloque {
  flex: 1 1 48%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bloque:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.bloque h3 {
  color: #E30613;
  font-weight: 700;
  margin-bottom: 10px;
}

/* =========================================================
   QUIÉNES SOMOS — VERSIÓN MÓVIL
========================================================= */
@media (max-width: 900px) {

  .quienes-somos {
    padding: 40px 20px !important;
    text-align: center !important;
  }

  /* Contenedor principal: columnas → bloques verticales */
  .contenedor-quienes {
    flex-direction: column !important;
    gap: 25px !important;
    align-items: center !important;
  }

  /* Imagen */
  .contenedor-img img {
    width: 100% !important;
    border-radius: 6px !important;
  }

  /* Título rojo sobre la imagen */
  .titulo-imagen {
    font-size: 1.6rem !important;
    padding: 8px 20px !important;
    top: 10px !important;
    left: 10px !important;
    border-radius: 4px !important;
  }

  /* Texto descriptivo */
  .columna.texto {
    flex: unset !important;
    width: 100% !important;
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
    text-align: left !important;
    padding: 0 5px !important;
  }

  /* Contenedor Misión y Visión */
  .bloques {
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
  }

  /* Tarjetas Misión / Visión */
  .bloque {
    flex: unset !important;
    width: 100% !important;
    padding: 20px !important;
    text-align: center !important;
  }

  .bloque h3 {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
  }
}


/* ===============================
   SECCIÓN BANNER INTERMEDIO
================================== */
.banner-inferior {
  position: relative;
  background-image: url("../img/IMAGENES WEB-12.webp"); /* fondo de obra o construcción */
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.banner-inferior .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0); /* oscurece la imagen */
  z-index: 1;
}

.contenedor-banner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px; /* 🔹 antes era 70 u 80, aumentamos el espacio entre ítems */
  flex-wrap: wrap;
  text-align: center;
}


.contenedor-banner .item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}

.contenedor-banner .divisor {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   BANNER INTERMEDIO — MÓVIL
========================================================= */
@media (max-width: 900px) {

  .banner-inferior {
    padding-top: 35px !important;
    padding-bottom: 40px !important;
    background-position: top center !important;
  }

  .contenedor-banner {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-end !important;
    gap: 45px !important;
    margin-top: 0 !important;
  }

  .contenedor-banner .item h3 {
    font-size: 0.92rem !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  /* 🔹 AQUÍ VA LA LÍNEA VERTICAL EN MÓVIL */
  .contenedor-banner .divisor {
    display: inline-block !important;
    width: 2px !important;
    height: 38px !important;
    background-color: rgba(255,255,255,0.8) !important;
    margin: 0 6px !important;
  }
}





/* ===============================
   SECCIÓN SERVICIOS PROFESIONALES
================================== */

.seccion-servicios {
  background: #fff;
  padding: 100px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.titulo-seccion {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 60px;
  text-align: left; /* 🔹 igual que en tu ejemplo */
}

.grid-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
}

.card-servicio {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 420px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.card-servicio:hover {
  transform: translateY(-5px);
}

.card-servicio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.card-servicio:hover img {
  transform: scale(1.1);
}

/* Capa oscura sobre la imagen */
.card-servicio .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.3s ease;
}

.card-servicio:hover .overlay {
  background: rgba(0, 0, 0, 0.6);
}

/* Contenido centrado */
.card-servicio .contenido {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 0 25px;
  z-index: 2;
}

.card-servicio h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-servicio .linea-roja {
  display: inline-block;
  width: 60px;
  height: 4px;
  background-color: #E30613;
  margin-bottom: 15px;
}

.card-servicio p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #eee;
}

/* Botón inferior centrado */
.centrado {
  margin-top: 50px;
}

.centrado .btn-rojo {
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ================================
     MÓVIL — SECCIÓN SERVICIOS
================================ */
@media (max-width: 900px) {

  .seccion-servicios {
    padding: 60px 20px !important;
    text-align: left !important;
  }

  /* TÍTULO */
  .titulo-seccion {
    font-size: 2.8rem !important;
    margin-bottom: 35px !important;
    text-align: left !important;
  }

  /* GRID — una columna */
  .grid-servicios {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }

  /* TARJETA */
  .card-servicio {
    height: 200px !important; /* igual a diseño */
    max-width: 100% !important;
    border-radius: 6px !important;
  }

  /* Imagen con menos zoom */
  .card-servicio img {
	object-position: center center !important; 
    transform: scale(1.05) !important; 
  }

  /* Sombra más fuerte (como la maqueta) */
  .card-servicio .overlay {
    background: rgba(0,0,0,0) !important;
  }

  /* Contenido más arriba */
  .card-servicio .contenido {
    bottom: 20px !important;  
    padding: 0 20px !important;
  }

  /* Título dentro de tarjeta */
  .card-servicio h3 {
    font-size: 1.3rem !important;
    margin-bottom: 8px !important;
  }

  /* Línea roja más fina y corta */
  .card-servicio .linea-roja {
    width: 80px !important;
    height: 3px !important;
  }

  /* Párrafo */
  .card-servicio p {
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
  }

  /* BOTÓN */
  .centrado {
    margin-top: 45px !important;
    text-align: center !important;
  }

  .centrado .btn-rojo {
    padding: 12px 30px !important;
    font-size: 0.9rem !important;
  }

}


/* ===============================
   SECCIÓN DE CONTACTO (ALINEADA)
================================== */
.seccion-contacto {
  background: #f2f2f2;
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
}

.contenedor-contacto {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; /* 🔹 centra verticalmente las dos columnas */
  gap: 60px;
}

/* --- Columna izquierda (formulario) --- */
.columna-formulario {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.columna-formulario h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 40px;
  text-align: left;
}

.columna-formulario form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.columna-formulario label {
  font-weight: 600;
  color: #111;
}

.columna-formulario input,
.columna-formulario textarea {
  border: none;
  border-bottom: 2px solid #999;
  background: transparent;
  padding: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.columna-formulario input:focus,
.columna-formulario textarea:focus {
  border-color: #E30613;
}

.columna-formulario small {
  color: #666;
  font-size: 0.9rem;
  margin-top: -10px;
}

.columna-formulario .btn-rojo {
  margin-top: 25px;
  align-self: flex-start;
  padding: 12px 30px;
  font-weight: 600;
}

/* --- Columna derecha (tarjeta de contacto) --- */

/* Contenedor de la tarjeta: asegura control de capas */
.columna-info {
  position: relative;
  z-index: 2;
}

/* Tarjeta */
.tarjeta-contacto {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    z-index: 1;
}

/* Franja diagonal roja detrás */
.tarjeta-contacto::before {
  content: "";
  position: absolute;

  /* Ubicación precisa */
  top: -40px;
  right: -40px;

  width: 180px;
  height: 180px;

  background: #E30613;

  /* Forma diagonal EXACTA como la de tu ejemplo */
  clip-path: polygon(0 0, 100% 0, 100% 100%);

  z-index: -1;
}



/* --- Contenido interno --- */
.tarjeta-contacto h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.tarjeta-contacto p {
  margin-bottom: 20px;
  line-height: 1.5;
  color: #333;
}

.tarjeta-contacto a {
  color: #111;
  text-decoration: none;
}

.tarjeta-contacto a:hover {
  color: #E30613;
}

/* --- Redes sociales (corrigido y centrado) --- */
.redes-sociales {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

.redes-sociales a img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: none; /* 🔹 Evita el color rojo sólido */
}

.redes-sociales a img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 4px #d71920); /* 🔹 Efecto rojo elegante */
}

/* ============================
   CONTACTO — Versión Móvil
===============================*/
@media (max-width: 900px) {

  /* Sección más compacta en móvil */
  .seccion-contacto {
    padding: 30px 20px !important;
  }

  /* Contenedor en columna (no dos columnas lado a lado) */
  .contenedor-contacto {
    flex-direction: column !important;
    gap: 35px !important;
    align-items: flex-start !important;
  }

  /* Título más pequeño */
  .columna-formulario h2 {
    font-size: 2.6rem !important;
    margin-bottom: 25px !important;
  }
  
    .columna-formulario {
    width: 100% !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  /* Inputs + textarea más grandes y fáciles de tocar */
  .columna-formulario input,
  .columna-formulario textarea {
    font-size: 1rem !important;
    padding: 12px 8px !important;
  }

  /* Botón alineado a la izquierda y ancho completo si deseas */
  .columna-formulario .btn-rojo {
    padding: 12px 25px !important;
    font-size: 1rem !important;
	    display: block !important;   /* Convierte el botón en un bloque */
    margin: 25px auto 0 auto !important;  /* Centrado horizontal */
    text-align: center !important;  /* Asegura el texto centrado */
  }

  /* Tarjeta de contacto */
  .tarjeta-contacto {
    width: 100% !important;
    padding: 25px !important;
    border-radius: 10px !important;
  }

  /* Franja diagonal — más pequeña y mejor posicionada para móvil */
  .tarjeta-contacto::before {
    width: 120px !important;
    height: 120px !important;
    top: -25px !important;
    right: -25px !important;
  }

  /* Texto dentro de la tarjeta */
  .tarjeta-contacto h3 {
    font-size: 1.8rem !important;
  }

  .tarjeta-contacto p {
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
  }

  /* Redes sociales centradas en móvil */
  .redes-sociales {
    justify-content: flex-start !important;
    gap: 15px !important;
  }

  .redes-sociales a img {
    width: 34px !important;
    height: 34px !important;
  }
}


/* ===============================
   SECCIÓN ÚNETE 
================================== */
.seccion-unete {
  background: #fff;
  padding: 100px 10% 80px;
  text-align: left;
  position: relative;
}

.seccion-unete p {
  margin-bottom: 50px !important;  /* 🔥 Más espacio debajo del texto */
}

.seccion-unete .contenedor-unete h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

/* FORMULARIO UNETE: Alineación a la izquierda */
.form-unete {
  width: 100%;
  max-width: 100% !important;	
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  margin-left: 0;          /* Alineado a la izquierda */
  margin-right: auto;
}


.form-unete input[type="text"],
.form-unete input[type="email"],
.form-unete input[type="tel"] {
  width: 100%;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  background: #f5f5f5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  font-size: 1rem;
}

/* Bloque de subir CV */
.upload-cv {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 👈 También a la izquierda */
  gap: 8px;
}

.upload-cv input[type="file"] {
  display: none;
}

.btn-adjuntar {
  background: #2b2b2b;
  color: #fff;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;              /* 👈 activa flexbox */
  justify-content: center;    /* 👈 centra horizontal */
  align-items: center;        /* 👈 centra vertical */
  width: 200px;               /* 👈 tamaño controlado */
  max-width: 100%;
  text-align: center;
}

.btn-adjuntar:hover {
  background: #d71920;
}

.upload-cv small {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

.centrado-unete {
  margin: 0 auto;
}

.centrado-unete .btn-rojo {
  padding: 11px 60px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===============================
   SECCIÓN ÚNETE — VERSIÓN MÓVIL
================================== */

@media (max-width: 900px) {

  /* Sección completa */
  .seccion-unete {
    padding: 50px 20px !important;
    text-align: left !important;
  }

  /* Título principal */
  .seccion-unete .contenedor-unete h2 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }
  
  /* El span rojo "equipo" más pequeño y alineado */
  .seccion-unete .rojo {
    padding: 3px 10px !important;
    font-size: 1rem !important;
    border-radius: 4px !important;
    display: inline-block !important;
    margin-left: 5px !important;
  }

  /* Párrafos */
  .seccion-unete p {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    margin-bottom: 25px !important;
  }


  /* Formulario */
  .form-unete {
    width: 100% !important;
    gap: 12px !important;
  }

  .form-unete input {
    padding: 12px !important;
    font-size: 1rem !important;
  }

  /* Botón Adjuntar */
  .btn-adjuntar {
    padding: 10px 18px !important;
    width: 100% !important;
    font-size: 0.95rem !important;
  }

  /* Texto pequeño del CV */
  .upload-cv small {
    font-size: 0.8rem !important;
  }

  /* Botón Enviar */
  .centrado-unete {
    margin-top: 20px !important;
    text-align: center !important;
    width: 100%;
  }

  .centrado-unete .btn-rojo {

    padding: 10px 80px !important;
    font-size: 1rem !important;
  }
}


/* ===============================
   PIE DE PÁGINA
================================== */
/* ===============================
   AJUSTE FINAL DEL FOOTER
================================== */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 10% 20px; /* 🔹 igual que 'Nuestros Productos' */
  font-size: 0.95rem;
}

.footer-contenido {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 260px;
}

/* Columna logo y descripción */
.footer-logo {
  flex: 1 1 250px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: #ccc;
  max-width: 300px;
  line-height: 1.6;
  margin-top: 10px;
}

/* Enlaces */
.footer-links h4,
.footer-contacto h4 {
  color: #E30613;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #E30613;
}

/* Contacto */
.footer-contacto p {
  color: #ccc;
  margin-bottom: 8px;
}

.footer-redes {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.footer-redes a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0) invert(1);
}

.footer-redes a img:hover {
  transform: scale(1.1);
  filter: brightness(1) invert(0);
}

/* Línea inferior */
.footer-copy {
  text-align: left;
  font-size: 0.9rem;
  color: #aaa;
}

/* Icono flotante de WhatsApp */
.btn-whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 100;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn-whatsapp img {
  width: 30px;
  height: 30px;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
  background-color: #20bd5a;
}

@media (max-width: 900px) {

  /* Footer contenedor general */
  .footer {
    padding: 50px 20px 30px !important;
    text-align: left !important; 
  }

  /* Ordenar columnas en vertical */
  .footer-contenido {
    flex-direction: column !important;
    gap: 40px !important;
    align-items: flex-start !important;
  }

  /* Logo centrado solo en móvil */
  .footer-logo {
    width: 100% !important;
  }

  .footer-logo img {
    margin-bottom: 10px !important;
  }

  .footer-logo p {
    max-width: 100% !important;
    line-height: 1.5 !important;
  }

  /* Navegación */
  .footer-links h4,
  .footer-contacto h4 {
    font-size: 1.2rem !important;
    margin-bottom: 12px !important;
  }

  .footer-links ul li {
    margin-bottom: 10px !important;
  }

  /* Redes centradas */
  .footer-redes {
    justify-content: flex-start !important;
    gap: 25px !important;
    margin-top: 25px !important;
  }

  .footer-redes a img {
    width: 40px !important;
    height: 40px !important;
  }

  /* Texto inferior */
  .footer-copy {
    text-align: center !important;
    margin-top: 40px !important;
    font-size: 0.9rem !important;
  }

  /* WhatsApp flotante un poco más arriba para evitar solaparse */
  .btn-whatsapp {
    bottom: 90px !important;
    right: 20px !important;
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {
  .hero-content,
  .hero-industrial {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-imagen img,
  .imagen-industrial img {
    border-radius: 0;
    height: 60vh;
  }

  .grid-productos {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contenido {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    height: auto;
  }

  .hero-texto h1 {
    font-size: 38px;
  }

  .grid-productos {
    grid-template-columns: 1fr;
  }

  nav a {
    margin-left: 12px;
  }
}

/* Responsivo */
@media (max-width: 900px) {
  .contenedor-quienes {
    flex-direction: column;
  }

  .bloques {
    flex-direction: column;
  }

  .titulo-imagen {
    font-size: 1.3rem;
    padding: 8px 20px;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .contenedor-banner {
    flex-direction: column;
    gap: 20px;
  }

  .contenedor-banner .divisor {
    display: none;
  }

  .contenedor-banner .item h3 {
    font-size: 1.5rem;
  }
}

/* Responsivo */
@media (max-width: 900px) {
  .grid-servicios {
    gap: 25px;
  }
  .card-servicio {
    max-width: 100%;
    height: 380px;
  }
}

/* --- Responsivo --- */
@media (max-width: 900px) {
  .contenedor-contacto {
    flex-direction: column;
    align-items: stretch;
    gap: 50px;
  }

  .columna-info {
    justify-content: flex-start;
  }

  .tarjeta-contacto {
    max-width: 100%;
  }
}



/* =========================================================
   SIDEBAR MÓVIL (DERECHA)
========================================================= */
.sidebar-movil {
  position: fixed;
  top: 0;
  right: -300px;   /* ← se oculta fuera de pantalla */
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  transition: right 0.35s ease;
  z-index: 2100;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.sidebar-movil.abierto {
  right: 0;  /* ← aparece */
}

.sidebar-header {
  display: flex;
  justify-content: flex-end;
}

.cerrar-sidebar {
  font-size: 1.8rem;
  cursor: pointer;
  color: #000;
}

.menu-movil {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-movil a {
  text-decoration: none;
  color: #111;
  font-size: 1.1rem;
  font-weight: 600;
}

.menu-movil a:hover {
  color: #E30613;
}


/* =========================================================
   OVERLAY BLUR DEL FONDO
========================================================= */
.overlay-blur {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 2000;
}

.overlay-blur.mostrar {
  opacity: 1;
  visibility: visible;
}

/* =========================================================
   VARIABLES Y CONFIGURACIÓN GLOBAL
========================================================= */
:root {
  --rojo: #E30613;
  --rojo-oscuro: #bc0510;
  --negro: #111;
  --gris-oscuro: #444;
  --gris-claro: #f1f1f1;
  --blanco: #ffffff;
  --font: "Poppins", sans-serif;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background: var(--blanco);
  color: var(--negro);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================================================
   SUBMENÚ PRODUCTOS (STICKY)
========================================================= */
.submenu-productos {
/* 1. Hacemos que la barra ignore los límites del padre y llegue a los extremos */
    width: 200vw; 
    position: sticky;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    /* 2. Ajustamos la altura para bajarla (ajusta este número según tu header) */
    top: 120px; 
    
    /* Estética de la barra */
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    padding: 18px 0;
    z-index: 950;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.submenu-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.enlace-submenu {
  position: relative;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.enlace-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: var(--rojo);
  transition: width 0.3s ease;
}

.enlace-submenu:hover,
.enlace-submenu.activo {
  color: var(--negro);
}

.enlace-submenu:hover::after,
.enlace-submenu.activo::after {
  width: 100%;
}

/* =========================================================
   ESTRUCTURA DE PRODUCTOS (GRIDS)
========================================================= */
.productos-contenido {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
}

.producto-detalle {
  width: clamp(320px, 100%, 1650px);
  margin: 0 auto;
  padding: 80px 20px;
  border-bottom: 1px solid #eee;
}

/* Imagen a la Izquierda */
.producto-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Imagen a la Derecha */
.producto-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}



.producto-imagenes img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
}

/* =========================================================
   TIPOGRAFÍA Y CONTENIDO
========================================================= */
.producto-info h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.resaltado {
  color: var(--rojo);
}

.descripcion-producto {
  font-size: 16px;
  color: var(--gris-oscuro);
  margin-bottom: 20px;
}

.uso-aplicacion {
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--negro);
  text-transform: uppercase;
  font-size: 14px;
}

/* =========================================================
   TABLAS DE ESPECIFICACIONES (ESTILO INDUSTRIAL)
========================================================= */
.tabla-especificaciones-contenedor {
  width: 100%;
  margin-top: 25px;
}

.tabla-especificaciones {
  width: 100%;
  max-width: 650px;
}

.fila {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columnas por defecto */
  padding: 12px 15px;
  margin-bottom: 4px;
  align-items: center;
  background: var(--gris-claro);
  border-radius: 4px;
}

/* Tabla de 3 columnas (Material Pesado / Alimenticio) */
.tabla-principal .fila {
  grid-template-columns: 1.2fr 1fr 0.8fr;
}

.fila.encabezado {
  background: #e1e1e1;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.col-izq, .col-der, .col {
  color: var(--negro);
  font-size: 14px;
  text-align: center;
}



/* =========================================================
   SECCIÓN CANGILONES / MOTORES (DISEÑO ESPECIAL)
========================================================= */
.producto-cangilones .cangilones-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.producto-cangilones .cangilones-imagenes img{
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px
}

.producto-cangilones .cangilones-info h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.lista-caracteristicas {
  list-style: none;
  margin: 20px 0;
}

.lista-caracteristicas li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 15px;
}

.lista-caracteristicas li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rojo);
  font-weight: 800;
}

/* =========================================================
   COMPONENTES (BOTONES Y UTILIDADES)
========================================================= */
.centrado {
  text-align: center;
  padding: 40px 0;
}

.btn-rojo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--rojo);
  color: var(--blanco);
  font-weight: 700;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-rojo:hover {
  background-color: var(--rojo-oscuro);
  transform: translateY(-2px);
}

.btn-rojo .icono {
  background: rgba(0,0,0,0.2);
  padding: 4px 8px;
  border-radius: 50%;
  font-size: 12px;
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

/* Tablets */
@media (max-width: 1024px) {
  .producto-grid, .producto-grid-2, .cangilones-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  
  /* SUBMENÚ - NO TOCAR (Tal cual lo enviaste) */
  .submenu-productos {
    position: -webkit-sticky !important;
    position: sticky !important; 
    top: 105px !important; 
    width: 100% !important;
    left: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    z-index: 1000 !important;
    padding: 10px 0;
    background: #f8f8f8;
  }

  .submenu-wrapper {
    gap: 15px;
    justify-content: space-around;
    padding: 5px 10px;
  }

  /* SECCIÓN BANDAS - NO TOCAR (Mantiene su lógica de una columna) */
  .producto-grid, .producto-grid-2 {
    grid-template-columns: 1fr;
  }
  .producto-imagenes { order: -1; }

  /* =========================================================
     MEJORA EXCLUSIVA: SECCIÓN CANGILONES EN ADELANTE
     ========================================================= */
  
  /* Forzamos a que el grid de cangilones sea una sola columna */
  .cangilones-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important; /* Por si acaso */
    gap: 20px !important;
  }

  /* Hacemos que la imagen de cangilones vaya arriba y ocupe todo el ancho */
  .cangilones-imagenes {
    order: -1 !important;
    width: 100% !important;
    display: block !important;
  }

  /* Corregimos el tamaño de la imagen para que no se vea pequeña */
  .cangilones-imagenes img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  /* Centramos la información de los cangilones */
  .cangilones-info {
    width: 100% !important;
    text-align: left !important;
    padding: 0 10px;
  }

  /* Alineamos la lista de características para que sea legible */
  .lista-caracteristicas {
    display: inline-block !important;
    text-align: left !important;
    margin-top: 15px !important;
  }
}