/* ============================================================
   sections.css
   Estilos de todas las secciones internas:
   Hero/Carrusel, Nosotros, Industrias, Productos,
   Beneficios, Contacto y Mapa
   ============================================================ */

/* ══════════════════════════════════════
   HERO / CARRUSEL
═══════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  margin-top: 72px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform .85s cubic-bezier(.77, 0, .18, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 16, 32, .35) 30%, rgba(8, 16, 32, .1) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  max-width: 720px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(26, 109, 255, .2);
  border: 1px solid rgba(100, 163, 255, .4);
  border-radius: 20px;
  padding: .35rem 1rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #80bcff;
  margin-bottom: 1.6rem;
}

.slide-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #80bcff;
  animation: blink 1.4s infinite;
}

.slide h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.slide h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #5bb3ff, #00e5b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide p {
  font-size: clamp(.85rem, 1.4vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .72);
  margin-top: 1.2rem;
  max-width: 500px;
  line-height: 1.8;
}

.slide-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

/* Botón primario del slide */
.sbtn-p {
  background: var(--accent);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(26, 109, 255, .4);
  transition: transform .2s, box-shadow .2s;
}

.sbtn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 109, 255, .5);
}

/* Botón outline del slide */
.sbtn-o {
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255, 255, 255, .07);
  transition: border-color .2s, background .2s;
}

.sbtn-o:hover {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .14);
}

/* Controles prev / next */
.c-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.c-btn:hover { background: rgba(255, 255, 255, .25); }

.c-btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
}

#prev-btn { left: 2vw; }
#next-btn  { right: 2vw; left: auto; }

/* Dots de navegación */
.c-dots {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}

.cdot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background .3s, width .3s;
}

.cdot.active {
  width: 28px;
  background: #fff;
}

/* Barra de progreso */
.c-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 10;
}

/* Animación de entrada del slide activo */
@keyframes sUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.sa .slide-badge { animation: sUp .6s .1s  both; }
.sa h1           { animation: sUp .6s .22s both; }
.sa p            { animation: sUp .6s .36s both; }
.sa .slide-btns  { animation: sUp .6s .48s both; }


/* ══════════════════════════════════════
   NOSOTROS
═══════════════════════════════════════ */
#about { background: var(--bg2); }

/* Quitar el límite de ancho solo en esta sección */
#about .sw { max-width: none; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: stretch;
}

.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 480px;
  height: 100%;
}

.about-img-wrap img {
  position: absolute;     /* cubre todo el contenedor */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-float {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: .9rem 1.2rem;
  box-shadow: 0 8px 28px rgba(15, 28, 46, .15);
  display: flex;
  align-items: center;
  gap: .8rem;
}

.about-float .fn {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.about-float .fl {
  font-size: .7rem;
  font-weight: 600;
  color: var(--sub);
}

.about-text p {
  font-size: .9rem;
  color: var(--sub);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.astat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
}

.astat .big {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.astat .desc {
  font-size: .72rem;
  font-weight: 600;
  color: var(--sub);
  margin-top: .25rem;
}


/* ══════════════════════════════════════
   INDUSTRIAS
═══════════════════════════════════════ */
#industries { background: var(--bg); }

.ihead {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ihead .ruler.c {
  margin-top: 1.1rem;
  margin-bottom: 0;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 1.2rem;
}



.ind-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  cursor: default;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.ind-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 14px 40px rgba(26, 109, 255, .12);
}

.ind-ico {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: rgba(26, 109, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin: 0 auto 1rem;
  transition: background .25s;
}

.ind-card:hover .ind-ico { background: rgba(26, 109, 255, .16); }

.ind-card h3 { font-size: .87rem; font-weight: 700; color: var(--dark); }
.ind-card p  { font-size: .75rem; color: var(--sub); margin-top: .4rem; line-height: 1.6; }


/* ══════════════════════════════════════
   PRODUCTOS
═══════════════════════════════════════ */
#products { background: var(--bg3); }

.phead {
  text-align: center;
  margin-bottom: 3.5rem;
}

.phead .ruler.c {
  margin-top: 1.1rem;
  margin-bottom: 0;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.prod-card {
  background: var(--bg2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.prod-img-w {
  overflow: hidden;
  position: relative;
  height: 200px;
  flex-shrink: 0;
}

.prod-img-w img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s;
}

.prod-card:hover .prod-img-w img { transform: scale(1.05); }

.pnum {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: .22rem .6rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
}

.prod-body { padding: 1.5rem; flex: 1; }

.ptag {
  display: inline-block;
  background: rgba(26, 109, 255, .08);
  color: var(--accent);
  border-radius: 4px;
  padding: .18rem .65rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.prod-body h3 { font-size: .98rem; font-weight: 700; color: var(--dark); margin-bottom: .45rem; }
.prod-body p  { font-size: .79rem; color: var(--sub); line-height: 1.75; }

.prod-foot { padding: 0 1.5rem 1.5rem; }

.plink {
  font-size: .73rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
}

.plink:hover { gap: .6rem; }


/* ══════════════════════════════════════
   BENEFICIOS
═══════════════════════════════════════ */
#benefits { background: var(--bg2); }

.bhead {
  text-align: center;
  margin-bottom: 3.5rem;
}

.bhead .ruler.c {
  margin-top: 1.1rem;
  margin-bottom: 0;
}

.ben-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.3rem;
}

.ben-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.ben-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26, 109, 255, .1);
}

.ben-ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(26, 109, 255, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

.ben-card h3 { font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: .45rem; }
.ben-card p  { font-size: .78rem; color: var(--sub); line-height: 1.75; }


/* ══════════════════════════════════════
   CONTACTO
═══════════════════════════════════════ */
#contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5vw;
  align-items: start;
}

/* ── Lista de datos de contacto ── */
.cdet-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.cdet {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cdet-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(26, 109, 255, .08);
  border: 1px solid rgba(26, 109, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  /* quitar font-size: ya no usamos emojis */
}

.cdet-t .l {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

.cdet-t .v {
  font-size: .86rem;
  color: var(--sub);
  margin-top: .12rem;
}

/* ── Redes sociales ── */
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.soc {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.soc svg {
  width: 20px;
  height: 20px;
  fill: #fff !important;       /* forzar blanco, evita herencia de color del padre */
  color: #fff !important;
  position: relative;
  z-index: 1;
  transition: transform .25s;
}

.soc:hover { transform: translateY(-4px) scale(1.1); }
.soc:hover svg { transform: scale(1.15); }

/* WhatsApp */
.soc-whatsapp { background: #25d366; box-shadow: 0 4px 14px rgba(37,211,102,.35); }
.soc-whatsapp:hover { box-shadow: 0 8px 24px rgba(37,211,102,.5); }

/* Facebook */
.soc-facebook { background: #1877f2; box-shadow: 0 4px 14px rgba(24,119,242,.35); }
.soc-facebook:hover { box-shadow: 0 8px 24px rgba(24,119,242,.5); }

/* Instagram — degradado oficial */
.soc-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  box-shadow: 0 4px 14px rgba(214,36,159,.35);
}
.soc-instagram:hover { box-shadow: 0 8px 24px rgba(214,36,159,.5); }

/* TikTok */
.soc-tiktok { background: #010101; box-shadow: 0 4px 14px rgba(1,1,1,.3); }
.soc-tiktok:hover { box-shadow: 0 8px 24px rgba(105,201,208,.5); }
.soc-tiktok svg { filter: drop-shadow(2px 0 0 #69c9d0) drop-shadow(-2px 0 0 #ee1d52); }

/* LinkedIn */
.soc-linkedin { background: #0a66c2; box-shadow: 0 4px 14px rgba(10,102,194,.35); }
.soc-linkedin:hover { box-shadow: 0 8px 24px rgba(10,102,194,.5); }

/* ══════════════════════════════════════
   BOTÓN FLOTANTE WHATSAPP
═══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;             /* siempre encima de todo */
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  text-decoration: none;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  animation: waPulse 2.4s ease-in-out infinite;
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  position: relative;
  z-index: 1;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,.65);
  animation: none; /* parar pulso al hacer hover */
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: 66px;
  background: var(--dark);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: .4rem .85rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .2s, transform .2s;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Anillo de pulso */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waRing 2.4s ease-in-out infinite;
  z-index: 0;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

@keyframes waRing {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Responsive: mover botón flotante en móvil */
@media (max-width: 480px) {
  .wa-float { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
  .wa-tooltip { display: none; }
}

/* ── Formulario de cotización ── */
.cf {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.8rem;
  box-shadow: var(--shadow-lg);
}

.cf-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .35rem;
}

.cf-sub {
  font-size: .78rem;
  color: var(--sub);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: .32rem;
  margin-top: .9rem;
}

.field:first-child { margin-top: 0; }
.form-row .field   { margin-top: 0; }

.field label {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sub);
}

.field input,
.field textarea,
.field select {
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .78rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .84rem;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 109, 255, .1);
  background: #fff;
}

.field textarea { resize: vertical; min-height: 108px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }

.btn-submit {
  width: 100%;
  margin-top: 1.4rem;
  padding: 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(26, 109, 255, .32);
  transition: background .2s, box-shadow .2s, transform .15s;
}

.btn-submit:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(26, 109, 255, .42);
}

.form-note {
  text-align: center;
  font-size: .68rem;
  color: var(--muted);
  margin-top: .8rem;
}

/* ── Mapa ── */
.map-sec { margin-top: 80px; }

.map-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* ══════════════════════════════════════
   RESPONSIVE — TODAS LAS RESOLUCIONES
   320px   Móvil pequeño (iPhone SE)
   480px   Móvil grande
   768px   Tablet portrait
   1024px  Tablet landscape / laptop pequeño
   1280px+ Desktop estándar (base, sin media query)
═══════════════════════════════════════ */

/* ── Tablet landscape / laptop pequeño (≤ 1024px) ── */
@media (max-width: 1024px) {
  .sw { padding: 80px 5vw; }

  /* Nosotros: reducir altura mínima */
  .about-img-wrap { min-height: 380px; }

  /* Productos: máx 2 columnas */
  .prod-grid { grid-template-columns: repeat(2, 1fr); }

  /* Beneficios: máx 3 columnas */
  .ben-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Tablet portrait (≤ 768px) ── */
@media (max-width: 768px) {
  .sw { padding: 70px 5vw; }

  /* Hero */
  .slide h1    { font-size: 1.75rem; }
  .slide p     { font-size: .88rem; }
  .slide-btns  { flex-direction: column; gap: .75rem; }
  .slide-content { padding: 0 6vw; }

  /* Nosotros: columna única, imagen con altura fija */
  .about-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-wrap  { min-height: 320px; height: 320px; }
  .about-stats     { grid-template-columns: repeat(2, 1fr); }

  /* Industrias */
  .ind-grid { grid-template-columns: repeat(2, 1fr); }

  /* Productos: columna única */
  .prod-grid { grid-template-columns: 1fr; }

  /* Beneficios: 2 columnas */
  .ben-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contacto */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row     { grid-template-columns: 1fr; }

  /* Mapa */
  .map-wrap { height: 280px; }
}

/* ── Móvil grande (≤ 480px) ── */
@media (max-width: 480px) {
  .sw { padding: 60px 5vw; }

  /* Hero */
  .slide h1        { font-size: 1.5rem; }
  .slide-badge     { font-size: .6rem; }
  .sbtn-p, .sbtn-o { width: 100%; text-align: center; padding: .8rem 1.2rem; }
  .c-btn           { width: 38px; height: 38px; }

  /* Nosotros */
  .about-img-wrap  { min-height: 260px; height: 260px; }
  .about-stats     { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .astat .big      { font-size: 1.6rem; }

  /* Industrias: columna única */
  .ind-grid { grid-template-columns: 1fr; }

  /* Beneficios: columna única */
  .ben-grid { grid-template-columns: 1fr; }

  /* Formulario */
  .cf { padding: 1.8rem 1.4rem; }

  /* Mapa */
  .map-wrap { height: 240px; }
}

/* ── Móvil pequeño (≤ 360px) ── */
@media (max-width: 360px) {
  .sw { padding: 50px 4vw; }

  .slide h1    { font-size: 1.3rem; }
  .stitle      { font-size: 1.5rem; }
  .about-stats { grid-template-columns: 1fr; }
  .cf          { padding: 1.4rem 1rem; }
}
/* ── Industrias: imagen en lugar de ícono ── */
.ind-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.ind-ico {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Máximo 4 columnas por fila en la grilla de industrias */
.ind-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 960px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .ind-ico  { height: 120px; }
}

/* ── About: misión y visión ── */
.about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.2rem 0 1.5rem;
}

.about-mv-item {
  background: var(--surface, #f7f9fc);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--accent);
}

.about-mv-item h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin: 0 0 .5rem;
}

.about-mv-item p {
  font-size: .83rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .about-mv { grid-template-columns: 1fr; }
}

/* ── Productos: lista de características ── */
.prod-list {
  margin: .6rem 0 0 1rem;
  padding: 0;
  list-style: disc;
  font-size: .82rem;
  color: var(--sub);
  line-height: 1.6;
}

.prod-list li { margin-bottom: .35rem; }


/* ══════════════════════════════════════════
   CONTACTO — nuevos estilos
   ══════════════════════════════════════════ */

/* Encabezado centrado de la sección */
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Grilla de equipos de ventas — 2x2 */
.sales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-bottom: 1.4rem;
}

.sales-card {
  background: var(--surface, #f7f9fc);
  border: 1px solid var(--border, #e8edf4);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  border-top: 3px solid var(--accent);
  transition: box-shadow .2s, transform .2s;
}

.sales-card:hover {
  box-shadow: 0 6px 20px rgba(26,109,255,.1);
  transform: translateY(-2px);
}

.sales-card--service {
  border-top-color: var(--accent2, #0a4fd6);
}

.sales-area {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .35rem;
}

.sales-card--service .sales-area { color: var(--accent2, #0a4fd6); }

.sales-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark, #0f1c2e);
  margin-bottom: .45rem;
  line-height: 1.3;
}

.sales-email {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--sub, #5a6a7e);
  text-decoration: none;
  transition: color .2s;
  word-break: break-all;
}

.sales-email:hover { color: var(--accent); }

/* Teléfonos de oficinas */
.office-phones {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--surface, #f7f9fc);
  border: 1px solid var(--border, #e8edf4);
  border-radius: 10px;
  padding: .85rem 1.2rem;
  margin-bottom: 1.4rem;
}

.op-label {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sub, #5a6a7e);
  white-space: nowrap;
}

.op-nums {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.op-nums a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark, #0f1c2e);
  text-decoration: none;
  transition: color .2s;
}

.op-nums a:hover { color: var(--accent); }

/* Formulario: quitar select de industria (ya no se pide) */
/* El campo Mensaje se muestra completo */

/* Responsive — ventas en 1 columna en móvil */
@media (max-width: 600px) {
  .sales-grid { grid-template-columns: 1fr; }
  .office-phones { flex-direction: column; align-items: flex-start; gap: .6rem; }
}
/* ══════════════════════════════════════════
   MODALES BOOTSTRAP · Estilo Indfix
══════════════════════════════════════════ */
.indfix-modal {
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  font-family: 'Montserrat', sans-serif;
}

.indfix-modal-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indfix-modal-icon svg {
  width: 32px;
  height: 32px;
}

.indfix-modal-icon--success {
  background: rgba(26, 109, 255, .09);
  border: 2px solid rgba(26, 109, 255, .18);
}

.indfix-modal-icon--success svg {
  stroke: var(--accent);
}

.indfix-modal-icon--error {
  background: rgba(220, 53, 69, .09);
  border: 2px solid rgba(220, 53, 69, .18);
}

.indfix-modal-icon--error svg {
  stroke: #dc3545;
}

.indfix-modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .5rem;
}

.indfix-modal-sub {
  font-size: .82rem;
  color: var(--sub);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.indfix-modal-btn {
  display: inline-block;
  padding: .85rem 2.4rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(26, 109, 255, .32);
  transition: background .2s, box-shadow .2s, transform .15s;
}

.indfix-modal-btn:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(26, 109, 255, .42);
}

.indfix-modal-btn--error {
  background: #dc3545;
  box-shadow: 0 6px 20px rgba(220, 53, 69, .28);
}

.indfix-modal-btn--error:hover {
  background: #b02a37;
  box-shadow: 0 8px 28px rgba(220, 53, 69, .38);
}


/* ══════════════════════════════════════════
   MODALES BOOTSTRAP · Estilo Indfix
══════════════════════════════════════════ */
.indfix-modal {
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  font-family: 'Montserrat', sans-serif;
}

.indfix-modal-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indfix-modal-icon svg {
  width: 32px;
  height: 32px;
}

.indfix-modal-icon--success {
  background: rgba(26, 109, 255, .09);
  border: 2px solid rgba(26, 109, 255, .18);
}

.indfix-modal-icon--success svg {
  stroke: var(--accent);
}

.indfix-modal-icon--error {
  background: rgba(220, 53, 69, .09);
  border: 2px solid rgba(220, 53, 69, .18);
}

.indfix-modal-icon--error svg {
  stroke: #dc3545;
}

.indfix-modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .5rem;
}

.indfix-modal-sub {
  font-size: .82rem;
  color: var(--sub);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.indfix-modal-btn {
  display: inline-block;
  padding: .85rem 2.4rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(26, 109, 255, .32);
  transition: background .2s, box-shadow .2s, transform .15s;
}

.indfix-modal-btn:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(26, 109, 255, .42);
}

.indfix-modal-btn--error {
  background: #dc3545;
  box-shadow: 0 6px 20px rgba(220, 53, 69, .28);
}

.indfix-modal-btn--error:hover {
  background: #b02a37;
  box-shadow: 0 8px 28px rgba(220, 53, 69, .38);
}

