/* =========================
   FRIO REPAR - STYLE 2.0
   BLOQUE 1/4
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f4f7fb;
  color:#1f2933;
  line-height:1.6;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

:root{
  --azul:#0a3d62;
  --azul-oscuro:#072f4c;
  --naranja:#f28c28;
  --verde:#25D366;
  --gris:#f4f7fb;
  --blanco:#ffffff;
  --texto:#1f2933;
}

/* CABECERA */

.topbar{
  min-height:82px;
  background:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:12px 42px;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 14px rgba(0,0,0,.08);
}

.logo-link{
  flex:0 0 auto;
}

.logo-menu{
  width:210px;
  height:auto;
  object-fit:contain;
}

.menu{
  display:flex;
  gap:26px;
  align-items:center;
  justify-content:center;
  flex:1;
}

.menu a{
  color:var(--azul);
  font-weight:bold;
  font-size:15px;
}

.menu a:hover{
  color:var(--naranja);
}

.top-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.btn-top{
  padding:10px 15px;
  border-radius:9px;
  color:white;
  font-weight:bold;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:7px;
}

.btn-phone{
  background:var(--azul);
}

.btn-whatsapp{
  background:var(--verde);
}

/* HERO */

background:
linear-gradient(
90deg,
rgba(255,255,255,.88) 0%,
rgba(255,255,255,.70) 42%,
rgba(255,255,255,.10) 80%
),
url("./imagenes/camara-frigorifica.png")
  background-size:90%;
background-repeat:no-repeat;
  background-position:center;
  background-repeat:no-repeat;
  display:flex;
  align-items:center;
  padding:80px 60px;
}

.hero-content{
    max-width:620px;
    width:100%;
    position:relative;
    z-index:2;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  background:white;
  color:var(--azul);
  padding:9px 16px;
  border-radius:999px;
  font-weight:bold;
  margin-bottom:18px;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
}

.hero h1{
  color:var(--azul);
  font-size:58px;
  line-height:1.08;
  margin-bottom:24px;
  letter-spacing:-1px;
}

.hero-text{
  font-size:20px;
  margin-bottom:22px;
  color:#263238;
}

/* BOTONES */

.hero-buttons,
.botones{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-top:25px;
}

.centro{
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:14px 23px;
  border-radius:10px;
  color:white;
  font-weight:bold;
  transition:.2s;
}

.btn-azul:hover{
    background:#0d47a1;
}

.btn-azul{
    background:#1565c0;
}

.btn-verde{
    background:#25D366;
}

.btn-verde:hover{
    background:#18c558;
}

.btn-naranja{
  background:var(--naranja);
}

/* VENTAJAS HERO */

.hero-features{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  margin-top:34px;
  flex-wrap:wrap;
}

.feature{
  display:flex;
  align-items:center;
  gap:14px;
  flex:1;
  min-width:180px;
}

.feature i{
  font-size:36px;
  color:var(--azul);
  min-width:38px;
}

.feature strong{
  display:block;
  color:var(--azul);
  font-size:18px;
  margin-bottom:2px;
}

.feature span{
  display:block;
  color:#555;
  font-size:15px;
}
/* =========================
   BLOQUE 2/4
   SERVICIOS + POR QUÉ + VENTA
========================= */

.section-title{
  text-align:center;
  max-width:850px;
  margin:0 auto 38px;
}

.section-title span{
  color:var(--naranja);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
  display:block;
  margin-bottom:10px;
}

.section-title h2{
  color:var(--azul);
  font-size:38px;
  line-height:1.15;
  margin-bottom:14px;
}

.section-title p{
  color:#555;
  font-size:17px;
}

/* SERVICIOS */

.servicios-section{
  width:94%;
  max-width:1400px;
  margin:60px auto;
}

.servicios-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}

.servicio-card{
  background:white;
  border-radius:18px;
  padding:28px 16px;
  text-align:center;
  box-shadow:0 5px 18px rgba(0,0,0,.08);
  border:1px solid #e4ebf2;
  transition:.25s;
}

.servicio-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,.12);
}

.servicio-card i{
  font-size:46px;
  color:var(--azul);
  margin-bottom:18px;
}

.servicio-card h3{
  color:var(--azul);
  font-size:17px;
  margin-bottom:10px;
}

.servicio-card p{
  color:#555;
  font-size:14px;
  line-height:1.45;
}

/* POR QUÉ */

.porque{
  width:94%;
  max-width:1400px;
  margin:60px auto;
  background:white;
  border-radius:24px;
  padding:55px 40px;
  box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.porque-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.porque-card{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:20px;
  padding:30px 24px;
  text-align:center;
}

.porque-card i{
  font-size:42px;
  color:var(--naranja);
  margin-bottom:18px;
}

.porque-card h3{
  color:var(--azul);
  font-size:21px;
  margin-bottom:12px;
}

.porque-card p{
  color:#555;
  font-size:16px;
}

/* VENTA */

.venta-section{
  width:94%;
  max-width:1400px;
  margin:60px auto;
  display:grid;
  grid-template-columns:320px 1fr;
  gap:30px;
  align-items:start;
}

.venta-intro{
  background:var(--azul);
  color:white;
  border-radius:24px;
  padding:38px 30px;
  position: sticky;
top: 105px;
}

.venta-intro span{
  color:var(--naranja);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}

.venta-intro h2{
  font-size:34px;
  line-height:1.1;
  margin:18px 0;
}

.venta-intro p{
  font-size:16px;
  margin-bottom:24px;
}

.venta-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.equipo-card{
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 5px 18px rgba(0,0,0,.08);
  border:1px solid #e4ebf2;
  transition:.25s;
}

.equipo-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 28px rgba(0,0,0,.13);
}

.equipo-card img{
  width:100%;
  height:210px;
  object-fit:cover;
}

.equipo-card h3{
  color:var(--azul);
  font-size:21px;
  padding:18px 18px 8px;
}

.equipo-card p{
  color:#555;
  font-size:15px;
  padding:0 18px 22px;
}

.equipo-destacado{
  grid-column:span 1;
}
/* =========================
   BLOQUE 3/4
   ZONA · MAPA · RESEÑAS · FAQ
========================= */

/* ---------- ZONA ---------- */

.zona-servicio{
    width:94%;
    max-width:1400px;
    margin:70px auto;
    background:linear-gradient(135deg,#0a3d62,#12598d);
    border-radius:25px;
    padding:60px;
    color:white;
}

.zona-texto{
    text-align:center;
    max-width:900px;
    margin:0 auto 40px;
}

.zona-texto span{
    color:#f28c28;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:1px;
}

.zona-texto h2{
    font-size:42px;
    margin:15px 0;
}

.zona-texto p{
    font-size:18px;
    opacity:.95;
}

.zonas-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin:40px 0;
}

.zonas-grid span{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.20);
    padding:14px;
    border-radius:12px;
    text-align:center;
    font-weight:bold;
    backdrop-filter:blur(4px);
}

.mapa{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.mapa iframe{
    display:block;
}

/* ---------- RESEÑAS ---------- */

.opiniones{
    width:94%;
    max-width:1400px;
    margin:70px auto;
}

.opiniones-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.opiniones article{
    background:white;
    border-radius:18px;
    padding:30px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.opiniones article:hover{
    transform:translateY(-6px);
}

.estrellas{
    color:#f7b500;
    font-size:24px;
    margin-bottom:15px;
}

.opiniones article p{
    color:#555;
    margin-bottom:20px;
    line-height:1.6;
}

.opiniones article strong{
    color:#0a3d62;
}

/* ---------- FAQ ---------- */

.faq-section{
    width:94%;
    max-width:1200px;
    margin:70px auto;
}

.faq-grid{
    display:grid;
    gap:18px;
}

.faq-grid article{
    background:white;
    padding:28px;
    border-radius:18px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.faq-grid article:hover{
    transform:translateY(-4px);
}

.faq-grid h3{
    color:#0a3d62;
    margin-bottom:10px;
    font-size:22px;
}

.faq-grid p{
    color:#555;
    line-height:1.7;
}
/* =========================
   BLOQUE 4/4
   CTA · INFO FOOTER · FOOTER · RESPONSIVE
========================= */

/* ---------- CTA FINAL ---------- */

.cta-final{
    width:94%;
    max-width:1400px;
    margin:70px auto;
    padding:90px 45px;
    border-radius:28px;
    text-align:center;
    color:white;
    background:

linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.45)),
url("./imagenes/cta-fondo.png");
        url("./imagenes/cta-fondo.png");
    background-size:80%;
background-repeat:no-repeat;
background-position:right center;
    background-position:center;
    box-shadow:0 15px 35px rgba(0,0,0,.20);
}

.cta-etiqueta{
    color:#f28c28;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:18px;
}

.cta-final h2{
    font-size:58px;
    line-height:1.1;
    margin-bottom:22px;
}

.cta-final p{
    max-width:900px;
    margin:0 auto 30px;
    font-size:20px;
    line-height:1.7;
}

.cta-lista{
    display:flex;
    justify-content:center;
    gap:28px;
    flex-wrap:wrap;
    margin:35px 0;
    font-weight:bold;
}

.cta-lista span{
    color:#f28c28;
    margin-right:8px;
    font-size:18px;
}

/* ---------- INFO FOOTER ---------- */

.info-footer{
    background:#0a3d62;
    color:white;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    padding:35px 45px;
}

.info-footer > div{
    border-right:1px solid rgba(255,255,255,.30);
    padding-right:18px;
}

.info-footer > div:last-child{
    border-right:none;
}

.info-footer i{
    font-size:30px;
    margin-bottom:12px;
}

.info-footer h3{
    font-size:14px;
    margin-bottom:8px;
}

.info-footer p,
.info-footer a{
    color:white;
    font-size:13px;
    line-height:1.5;
}

/* ---------- FOOTER ---------- */

footer{
    background:#072f4c;
    color:white;
    text-align:center;
    padding:25px 20px;
}

/* ---------- WHATSAPP FLOTANTE ---------- */

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    box-shadow:0 8px 18px rgba(0,0,0,.25);
    z-index:999;
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:1200px){

    .servicios-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .venta-section{
        grid-template-columns:1fr;
    }

    .venta-intro{
        position:relative;
        top:auto;
    }

    .venta-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .opiniones-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .info-footer{
        grid-template-columns:repeat(2,1fr);
    }

    .info-footer > div{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.25);
        padding-bottom:18px;
    }
}

@media(max-width:900px){

    .topbar{
        position:relative;
        flex-direction:column;
        padding:18px;
        gap:16px;
    }

    .logo-menu{
        width:190px;
    }

    .menu{
        flex-wrap:wrap;
        gap:15px;
    }

    .top-actions{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
  min-height:550px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.88) 0%,
      rgba(255,255,255,.70) 42%,
      rgba(255,255,255,.10) 80%
    ),
    url("./imagenes/camara-frigorifica.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display:flex;
  align-items:center;
  padding:80px 60px;
}

    .hero h1{
        font-size:38px;
    }

    .hero-text{
        font-size:17px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-features{
        flex-direction:column;
        align-items:flex-start;
        background:rgba(255,255,255,.75);
        padding:20px;
        border-radius:18px;
        text-align:left;
    }

    .servicios-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .porque-grid{
        grid-template-columns:1fr;
    }

    .venta-grid{
        grid-template-columns:1fr;
    }

    .zonas-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .opiniones-grid{
        grid-template-columns:1fr;
    }

    .cta-final{
        padding:55px 25px;
    }

    .cta-final h2{
        font-size:34px;
    }

    .cta-final p{
        font-size:17px;
    }

    .cta-lista{
        flex-direction:column;
        gap:14px;
    }
}

@media(max-width:520px){

    .servicios-grid{
        grid-template-columns:1fr;
    }

    .zonas-grid{
        grid-template-columns:1fr;
    }

    .info-footer{
        grid-template-columns:1fr;
        padding:30px 22px;
    }

    .btn{
        width:100%;
    }

    .hero h1{
        font-size:32px;
    }
}
.mantenimiento-section{
  width:94%;
  max-width:1400px;
  margin:70px auto;
}

.mantenimiento-hero{

    position:relative;

    min-height:680px;

    border-radius:28px;

    overflow:hidden;

    display:flex;

    align-items:center;

    padding:70px;

    background:
    linear-gradient(
    90deg,
    rgba(4,28,54,.96) 0%,
    rgba(4,28,54,.88) 30%,
    rgba(4,28,54,.55) 55%,
    rgba(4,28,54,.15) 78%,
    rgba(4,28,54,0) 100%),
    url("./imagenes/mantenimiento-vitrina.png");

    background-size:cover;

    background-position:center;
}

.mantenimiento-texto{

    max-width:620px;

    position:relative;

    z-index:2;

    color:white;

}

.mantenimiento-texto span{
  color:#f28c28;
  font-weight:bold;
  text-transform:uppercase;
  letter-spacing:1px;
}

.mantenimiento-texto h2{
  font-size:48px;
  line-height:1.1;
  margin:18px 0;
}

.mantenimiento-texto h3{
  color:#2aa8ff;
  margin-bottom:18px;
}

.mantenimiento-texto p{
  margin-bottom:18px;
  font-size:17px;
}

.mantenimiento-nota{
  margin-top:20px;
  font-size:15px !important;
  opacity:.9;
}


.mantenimiento-tarjetas{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
  margin-top:35px;
}

.mant-card{
  background:white;
  border-radius:22px;
  padding:35px;
  box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.mant-card i{
  font-size:46px;
  margin-bottom:18px;
}

.mant-card.azul i,
.mant-card.azul h3{
  color:#0a3d62;
}

.mant-card.naranja i,
.mant-card.naranja h3{
  color:#f28c28;
}

.mant-card h3{
  font-size:28px;
  margin-bottom:12px;
}

.mant-card p{
  margin-bottom:20px;
  color:#555;
}

.mant-card ul{
  list-style:none;
}

.mant-card li{
  margin-bottom:10px;
  color:#1f2933;
}

.mant-card li::before{
  content:"✓";
  color:#f28c28;
  font-weight:bold;
  margin-right:8px;
}

.meses-riesgo{
  margin-top:35px;
  background:#062b49;
  color:white;
  border-radius:22px;
  padding:35px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:25px;
  align-items:center;
}

.meses-riesgo > div{
  text-align:center;
  border-left:1px solid rgba(242,140,40,.55);
  padding-left:25px;
}

.meses-riesgo > div:first-child{
  border-left:none;
  text-align:left;
  display:flex;
  gap:22px;
  align-items:center;
}

.meses-riesgo svg{
  width:62px;
  height:62px;
  stroke:#f28c28;
  fill:none;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
  margin-bottom:14px;
}

.riesgo-intro svg{
  min-width:72px;
  width:72px;
  height:72px;
}

.meses-riesgo h3,
.meses-riesgo h4{
  color:white;
  margin-bottom:10px;
}

.meses-riesgo h4{
  font-size:20px;
}

.meses-riesgo p{
  color:#dbe7f1;
  font-size:15px;
  line-height:1.5;
}

@media(max-width:900px){
  .meses-riesgo{
    grid-template-columns:1fr;
  }

  .meses-riesgo > div{
    border-left:none;
    border-top:1px solid rgba(242,140,40,.35);
    padding-left:0;
    padding-top:20px;
  }

  .meses-riesgo > div:first-child{
    border-top:none;
  }
}


.beneficios-mant{
  background:white;
  margin-top:35px;
  border-radius:22px;
  padding:42px;
  box-shadow:0 5px 18px rgba(0,0,0,.08);
  display:grid;
  grid-template-columns:260px 1fr;
  gap:35px;
  align-items:center;
}

.beneficios-mant h3{
  color:#0a3d62;
  font-size:28px;
  line-height:1.2;
}

.beneficios-mant h3::after{
  content:"";
  display:block;
  width:55px;
  height:3px;
  background:#f28c28;
  margin-top:18px;
}

.beneficios-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
}

.beneficios-grid span,
.recomendado-grid span{
  text-align:center;
  color:#0a3d62;
  font-weight:bold;
  font-size:14px;
}

.beneficios-grid i,
.recomendado-grid i{
  display:block;
  font-size:42px;
  color:#0a3d62;
  margin-bottom:12px;
}

.recomendado-mant{
  background:white;
  padding:35px 25px;
  text-align:center;
}

.recomendado-mant h3{
  color:#0a3d62;
  font-size:30px;
  margin-bottom:30px;
}

.recomendado-grid{
  display:grid;
  grid-template-columns:repeat(8,1fr);
  gap:20px;
}

.mant-final{
  margin-top:35px;
  background:
    linear-gradient(90deg, rgba(10,61,98,.88) 0%, rgba(10,61,98,.65) 45%, rgba(10,61,98,.15) 100%),
    url("./imagenes/mant-final-pastelitos.png");
  background-size:cover;
  background-position:center;
  color:white;
  border-radius:22px;
  padding:45px;
  display:flex;
  align-items:center;
  gap:30px;
}

.mant-final-icono{
  width:95px;
  height:95px;
  border-radius:50%;
  background:#0f73d9;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:44px;
  flex-shrink:0;
}

.mant-final h3{
  font-size:36px;
  max-width:800px;
  line-height:1.2;
}

.mant-final span{
  color:#f28c28;
}

.mant-final p{
  margin-top:12px;
  font-size:18px;
}

@media(max-width:900px){
  .beneficios-mant{
    grid-template-columns:1fr;
    text-align:center;
  }

  .beneficios-grid,
  .recomendado-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .mant-final{
    flex-direction:column;
    text-align:center;
  }
}
@media(max-width:900px){
  .mantenimiento-hero,
  .mantenimiento-tarjetas,
  .meses-riesgo{
    grid-template-columns:1fr;
  }

  .mantenimiento-texto{
    padding:35px 25px;
  }

  .mantenimiento-texto h2{
    font-size:36px;
  }

  .beneficios-grid{
    grid-template-columns:1fr;
  }

  .mant-cta{
    flex-direction:column;
    text-align:center;
  }
}
/*==========================
      MARCAS
===========================*/

.marcas-section{

    width:94%;
    max-width:1400px;

    margin:80px auto;

}

.marcas-categoria{

    margin-top:45px;

}

.marcas-categoria h3{

    color:#0a3d62;

    text-align:center;

    margin-bottom:28px;

    font-size:28px;

}

.marcas-section{
  width:94%;
  max-width:1200px;
  margin:80px auto;
}

.marcas-bloque{
  margin-top:35px;
  text-align:center;
}

.marcas-bloque h3{
  color:#0a3d62;
  font-size:26px;
  margin-bottom:22px;
}

.marcas-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:18px;
}

.marcas-grid span{
  background:white;
  color:#0a3d62;
  font-weight:bold;
  padding:22px 15px;
  border-radius:16px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  border-top:4px solid #f28c28;
  transition:.25s;
}

.marcas-grid span:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 25px rgba(0,0,0,.14);
}
.logos-grid img{
  background:white;
  width:100%;
  height:105px;
  object-fit:contain;
  padding:22px;
  border-radius:16px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  border-top:4px solid #f28c28;
  filter:grayscale(100%);
  transition:.25s;
}

.logos-grid img:hover{
  filter:grayscale(0%);
  transform:translateY(-5px);
  box-shadow:0 12px 25px rgba(0,0,0,.14);
}
.contador-section{
  width:94%;
  max-width:1200px;
  margin:-45px auto 60px;
  background:white;
  border-radius:22px;
  padding:30px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  box-shadow:0 10px 28px rgba(0,0,0,.12);
  position:relative;
  z-index:10;
}

.contador-item{
  text-align:center;
  border-right:1px solid #e2e8f0;
}

.contador-item:last-child{
  border-right:none;
}

.contador-item strong{
  display:block;
  color:#0a3d62;
  font-size:42px;
  font-weight:800;
  line-height:1;
  margin-bottom:10px;
}

.contador-item span{
  color:#555;
  font-size:15px;
  font-weight:bold;
}

@media(max-width:900px){
  .contador-section{
    margin-top:40px;
position:relative;
z-index:5;
    grid-template-columns:repeat(2,1fr);
    margin:25px 15px 40px;
  }

  .contador-item{
    border-right:none;
  }
}

@media(max-width:520px){
  .contador-section{
    grid-template-columns:1fr;
  }
}
.footer{
    background:#123f66;
    color:white;
    margin-top:80px;
}

.footer-grid{
    max-width:1200px;
    margin:auto;
    padding:60px 25px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:40px;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

.footer h4{
    margin-bottom:18px;
    color:#f28c28;
}

.footer p{
    line-height:1.8;
}

.footer a{
    color:white;
    text-decoration:none;
    line-height:2;
    transition:.3s;
}

.footer a:hover{
    color:#f28c28;
}

.footer-copy{
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
    padding:20px;
    font-size:.9rem;
}
/* ===========================
   PÁGINAS LEGALES
=========================== */

.legal-page{
    max-width:1000px;
    margin:80px auto;
    padding:50px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.legal-page h1{
    color:#0a3d62;
    margin-bottom:30px;
    text-align:center;
    font-size:42px;
}

.legal-page h2{
    color:#0a3d62;
    margin-top:40px;
    margin-bottom:15px;
    font-size:26px;
}

.legal-page p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

.legal-page strong{
    color:#0a3d62;
}

.legal-page .btn{
    margin-top:40px;
}

@media(max-width:768px){

.legal-page{
    margin:30px 15px;
    padding:30px;
}

.legal-page h1{
    font-size:32px;
}

.legal-page h2{
    font-size:22px;
}

}
/* ===========================
   FRIO REPAR - MOBILE PRO
=========================== */

@media(max-width:768px){

  body{
    background:#f3f7fb;
  }

  .topbar{
    position:relative;
    padding:14px 14px 18px;
    flex-direction:column;
    gap:12px;
  }

  .logo-menu{
    width:185px;
  }

  .menu{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    width:100%;
  }

  .menu a{
    background:#eef5fb;
    color:#0a3d62;
    padding:10px 6px;
    border-radius:10px;
    font-size:13px;
    text-align:center;
  }

  .top-actions{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .btn-top{
    justify-content:center;
    padding:13px 10px;
    font-size:15px;
    border-radius:12px;
  }

  .hero{
    min-height:auto;
    padding:42px 18px 55px;
    text-align:center;
    background:
      linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82)),
      url("./imagenes/camara-frigorifica.png");
    background-size:cover;
    background-position:center;
  }

  .hero-badge{
    font-size:13px;
    padding:10px 14px;
    margin-bottom:18px;
  }

  .hero h1{
    font-size:34px;
    line-height:1.08;
    margin-bottom:18px;
  }

  .hero-text{
    font-size:16px;
    line-height:1.55;
    margin-bottom:20px;
  }

  .hero-buttons{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    margin-top:20px;
  }

  .hero-buttons .btn{
    width:100%;
    padding:16px;
    font-size:17px;
    border-radius:14px;
  }

  .hero-features{
    display:none;
  }

  .contador-section{
    margin:-25px 15px 45px;
    grid-template-columns:repeat(2,1fr);
    padding:22px 14px;
    gap:15px;
    border-radius:18px;
  }

  .contador-item{
    border-right:none;
  }

  .contador-item strong{
    font-size:30px;
  }

  .contador-item span{
    font-size:13px;
  }

  .section-title h2{
    font-size:30px;
  }

  .section-title p{
    font-size:16px;
  }

  .servicios-grid,
  .porque-grid,
  .venta-grid,
  .opiniones-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }

  .servicio-card,
  .porque-card,
  .equipo-card,
  .opiniones article,
  .faq-grid article{
    border-radius:18px;
    box-shadow:0 8px 22px rgba(0,0,0,.09);
  }

  .venta-section{
    grid-template-columns:1fr;
    margin:45px auto;
  }

  .venta-intro{
    position:relative;
    top:auto;
    text-align:center;
    padding:35px 24px;
  }

  .venta-intro h2{
    font-size:31px;
  }

  .equipo-card img{
    height:230px;
  }

  .mantenimiento-hero{
    min-height:auto;
    padding:0;
    background:
      linear-gradient(180deg, rgba(4,28,54,.92), rgba(4,28,54,.78)),
      url("./imagenes/mantenimiento-vitrina.png");
    background-size:cover;
    background-position:center;
  }

  .mantenimiento-texto{
    padding:45px 24px;
    text-align:center;
  }

  .mantenimiento-texto h2{
    font-size:34px;
  }

  .mantenimiento-tarjetas{
    grid-template-columns:1fr;
  }

  .meses-riesgo{
    grid-template-columns:1fr;
    padding:28px 22px;
  }

  .beneficios-mant{
    grid-template-columns:1fr;
    text-align:center;
    padding:30px 22px;
  }

  .beneficios-grid,
  .recomendado-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .mant-final{
    padding:35px 22px;
    text-align:center;
    flex-direction:column;
  }

  .mant-final h3{
    font-size:28px;
  }

  .zonas-grid{
    grid-template-columns:1fr;
  }

  .zona-servicio{
    padding:42px 22px;
  }

  .zona-texto h2{
    font-size:32px;
  }

  .marcas-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .logos-grid img{
    height:95px;
    padding:18px;
  }

  .cta-final{
    padding:50px 22px;
  }

  .cta-final h2{
    font-size:34px;
  }

  .cta-final p{
    font-size:17px;
  }

  .cta-lista{
    flex-direction:column;
    gap:12px;
  }

  .info-footer{
    grid-template-columns:1fr;
    padding:30px 22px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-logo{
    margin:0 auto 18px;
  }

  .whatsapp-float{
    width:56px;
    height:56px;
    right:16px;
    bottom:16px;
  }
}
@media(max-width:768px){

 .hero{
    min-height:620px;
    padding:36px 20px;
    align-items:flex-end;
    text-align:left;
    background:
      linear-gradient(
        90deg,
        rgba(255,255,255,.88) 0%,
        rgba(255,255,255,.70) 42%,
        rgba(255,255,255,.10) 80%
      ),
      url("./imagenes/camara-frigorifica.png");
    background-size:cover;
    background-position:center;
}

  .hero h1{
    color:white;
    font-size:38px;
    line-height:1.08;
  }

  .hero h1::first-line{
    color:white;
  }

  .hero-text{
    color:white;
    font-size:17px;
    line-height:1.55;
    max-width:92%;
  }

  .hero-badge{
    background:#0f73d9;
    color:white;
  }

  .hero-buttons{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
  }

  .hero-buttons .btn{
    width:100%;
    font-size:18px;
    padding:17px;
    border-radius:12px;
  }

  .hero-features{
    background:white;
    margin-top:30px;
    padding:18px;
    border-radius:18px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }

  .feature{
    min-width:auto;
    text-align:center;
    flex-direction:column;
    gap:6px;
  }

  .feature i{
    font-size:34px;
  }

  .feature strong{
    font-size:15px;
  }

  .feature span{
    font-size:13px;
  }

}
.ayuda-movil{
  display:block;
  background:red;
  color:white;
  padding:40px;
  font-size:30px;
}

@media(max-width:768px){

  .ayuda-movil{
    display:flex;
    background:linear-gradient(135deg,#062b49,#0a3d62);
    color:white;
    margin:28px 18px;
    padding:26px 20px;
    border-radius:20px;
    box-shadow:0 12px 28px rgba(0,0,0,.18);
    gap:18px;
    align-items:center;
    justify-content:space-between;
  }

  .ayuda-texto{
    flex:1;
  }

  .ayuda-texto h2{
    font-size:24px;
    line-height:1.15;
    margin-bottom:8px;
  }

  .ayuda-texto p{
    color:#f28c28;
    font-size:20px;
    font-weight:800;
    margin-bottom:16px;
  }

  .ayuda-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:13px 14px;
    border-radius:10px;
    color:white;
    font-weight:800;
    margin-top:10px;
  }

  .ayuda-btn.llamada{
    background:#0a3d62;
    border:1px solid rgba(255,255,255,.35);
  }

  .ayuda-btn.whatsapp{
    background:#25D366;
  }

  .ayuda-icono{
    width:105px;
    text-align:center;
    font-weight:800;
  }

  .ayuda-icono i{
    font-size:44px;
    margin-bottom:10px;
    color:white;
  }

  .ayuda-icono span{
    font-size:14px;
    line-height:1.25;
  }
}
.servicios-fotos-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.servicio-foto-card{
  background:white;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,.12);
  border:1px solid #e4ebf2;
  max-width:320px;
  margin:0 auto;
}

.servicio-foto-card img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.servicio-foto-card h3{
  color:#0a3d62;
  font-size:22px;
  padding:18px 18px 6px;
}

.servicio-foto-card p{
  color:#555;
  font-size:15px;
  padding:0 18px 22px;
  line-height:1.5;
}

@media(max-width:900px){
  .servicios-fotos-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){

  .servicios-fotos-grid{
    grid-template-columns:1fr;
  }

  .servicio-foto-card{
    max-width:100%;
  }

  .servicio-foto-card img{
    height:240px;
  }

}

@media(max-width:768px){

.servicio-foto-card img{
    height:240px;
}

}
/* ARREGLO TAMAÑO FOTOS SERVICIOS */
.servicios-fotos-grid .servicio-foto-card img{
  height:170px !important;
  object-fit:cover !important;
}

@media(max-width:768px){
  .servicios-fotos-grid .servicio-foto-card img{
    height:240px !important;
  }
}
.equipo-card img,
.servicio-foto-card img,
.servicios-fotos-grid img{
  height:150px !important;
  max-height:150px !important;
  object-fit:cover !important;
}
.hero-movil{
  position:relative;
}
.hero-movil img{
    width:80%;
    display:block;
    margin:30px auto;
    border-radius:22px;
}

.ayuda-foto{
    position:relative;
    width:320px;
    margin:30px auto;
    right:auto;
    top:auto;
    transform:none;
    background:linear-gradient(135deg,#062b49,#0a3d62);
    color:white;
    padding:22px;
    border-radius:18px;
    box-shadow:0 12px 28px rgba(0,0,0,.25);
}

.ayuda-foto h2{
  font-size:22px;
  line-height:1.15;
  margin-bottom:8px;
}

.ayuda-foto p{
  color:#f28c28;
  font-weight:800;
  font-size:18px;
  margin-bottom:14px;
}

.ayuda-foto a{
  display:block;
  text-align:center;
  color:white;
  font-weight:800;
  padding:12px;
  border-radius:10px;
  margin-top:10px;
}

.ayuda-foto a:first-of-type{
  background:#0a3d62;
  border:1px solid rgba(255,255,255,.35);
}

.ayuda-foto a:last-of-type{
  background:#25D366;
}

@media(max-width:768px){
  .ayuda-foto{
    position:static;
    width:auto;
    margin:-45px 18px 30px;
  }
}
@media(max-width:768px){

  .hero{
    background:
      linear-gradient(90deg, rgba(4,28,54,.92) 0%, rgba(4,28,54,.78) 45%, rgba(4,28,54,.45) 100%),
      url("./imagenes/camara-frigorifica.png") !important;
    background-size:cover !important;
    background-position:90% center !important;
  }

  .hero h1,
  .hero-text{
    color:white !important;
    text-shadow:0 3px 10px rgba(0,0,0,.45);
  }

  .hero-badge{
    background:#126fd3 !important;
    color:white !important;
  }
}
/* AJUSTE TARJETA AYUDA + CONTADOR MÓVIL */
@media(max-width:768px){

  .ayuda-foto{
    margin:-45px 18px 35px !important;
    padding:20px !important;
    border-radius:22px !important;
  }

  .ayuda-foto h2{
    font-size:28px !important;
  }

  .ayuda-foto p{
    font-size:22px !important;
  }

  .ayuda-foto a{
    padding:12px !important;
    font-size:18px !important;
  }

  .contador-section{
    margin:35px 18px 45px !important;
    position:relative !important;
    z-index:5 !important;
  }
}
@media (min-width:769px){
  section.hero{
    background:
      linear-gradient(
        90deg,
        rgba(255,255,255,.92) 0%,
        rgba(255,255,255,.72) 42%,
        rgba(255,255,255,.08) 78%
      ),
      url("/imagenes/camara-frigorifica.png") center right / cover no-repeat !important;

    min-height:640px !important;
    padding:80px 60px !important;
  }
}
/* AJUSTE HERO ORDENADOR */
@media (min-width:769px){

  .hero{
    padding-left:30px !important;
  }

  .hero-content{
    max-width:720px !important;
    margin-left:0 !important;
  }

}
/* TARJETA FIJA DE AYUDA EN ORDENADOR */
@media (min-width: 1000px){

  .hero-movil{
    position:static !important;
    padding:0 !important;
    margin:0 !important;
  }

  .ayuda-foto{
    position:fixed !important;
    right:0px !important;
    top:50% !important;
    bottom:auto !important;
    left:auto !important;
    transform:translateY(-50%) !important;

    width:245px !important;
    margin:0 !important;
    padding:18px !important;

    z-index:9998 !important;
  }

  .ayuda-foto h2{
    font-size:20px !important;
  }

  .ayuda-foto p{
    font-size:17px !important;
  }

  .ayuda-foto a{
    padding:10px !important;
    font-size:16px !important;
  }
}
/* EN MÓVIL NO QUEDA FLOTANDO */
@media (max-width:999px){

  .ayuda-foto{
    position:static !important;
    transform:none !important;
    width:auto !important;
    max-width:420px !important;
    margin:25px auto !important;
  }
}
/* TEMPORADAS EN FILA HORIZONTAL SOLO EN MÓVIL */
@media (max-width:768px){

  .riesgo-grid,
  .temporadas-grid,
  .meses-riesgo-grid{
    display:grid !important;
    grid-template-columns:repeat(3, 1fr) !important;
    gap:8px !important;
  }

  .riesgo-grid > div,
  .temporadas-grid > div,
  .meses-riesgo-grid > div{
    padding:12px 6px !important;
    text-align:center !important;
    border:none !important;
  }

  .riesgo-grid svg,
  .temporadas-grid svg,
  .meses-riesgo-grid svg{
    width:38px !important;
    height:38px !important;
    margin:0 auto 8px !important;
  }

  .riesgo-grid h4,
  .temporadas-grid h4,
  .meses-riesgo-grid h4{
    font-size:14px !important;
    margin:0 !important;
    line-height:1.2 !important;
  }

  .riesgo-grid p,
  .temporadas-grid p,
  .meses-riesgo-grid p{
    display:none !important;
  }
}
@media (max-width: 768px){

  .porque-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
  }

  .porque-card{
    padding:18px 12px;
    min-width:0;
    text-align:center;
  }

  .porque-card i{
    font-size:34px;
    margin-bottom:12px;
  }

  .porque-card h3{
    font-size:17px;
    line-height:1.2;
    margin-bottom:8px;
  }

  .porque-card p{
    font-size:14px;
    line-height:1.4;
    margin:0;
  }
}
@media (max-width:768px){

  .mant-card ul{
    columns:2;
    column-gap:20px;
  }

  .mant-card li{
    break-inside:avoid;
    margin-bottom:8px;
  }

}
@media (max-width:768px){

  .meses-riesgo{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .riesgo-intro{
    grid-column:1 / -1;
  }

  .meses-riesgo > div{
    padding:16px 12px;
  }

  .meses-riesgo h4{
    font-size:16px;
    margin:8px 0 6px;
  }

  .meses-riesgo p{
    font-size:14px;
    line-height:1.4;
  }

  .meses-riesgo svg{
    width:40px;
    height:40px;
  }

}
@media (max-width:768px){

  .beneficios-mant,
  .recomendado-mant{
    padding:30px 18px;
  }

  .beneficios-mant h3,
  .recomendado-mant h3{
    font-size:32px;
    line-height:1.15;
    margin-bottom:24px;
  }

  .beneficios-grid,
  .recomendado-grid{
    gap:18px 10px;
  }

  .beneficios-grid span,
  .recomendado-grid span{
    font-size:15px;
    line-height:1.3;
  }

  .beneficios-grid i,
  .recomendado-grid i{
    font-size:42px;
    margin-bottom:10px;
  }

}
@media (max-width: 768px){

  .cta-final{
    width:calc(100% - 30px);
    min-height:auto;
    margin:25px auto;
    padding:38px 18px;
    border-radius:22px;
    text-align:center;
    background-position:center;
    background-size:cover;
  }

  .cta-final .cta-etiqueta{
    font-size:15px;
    letter-spacing:2px;
    margin-bottom:15px;
  }

  .cta-final h2{
    font-size:32px;
    line-height:1.12;
    margin-bottom:16px;
  }

  .cta-final > p:not(.cta-etiqueta){
    max-width:560px;
    margin:0 auto 22px;
    font-size:16px;
    line-height:1.5;
  }

  .cta-lista{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px 18px;
    margin:20px auto;
  }

  .cta-lista span{
    width:auto;
    font-size:15px;
    margin:0;
  }

  .cta-final .botones{
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:center;
    gap:10px;
    margin-top:24px;
  }

  .cta-final .btn{
    width:50%;
    padding:13px 8px;
    font-size:14px;
    white-space:nowrap;
  }
}
@media (max-width:768px){

  .zonas-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
  }

  .zonas-grid span{
    padding:10px 8px;
    font-size:14px;
    text-align:center;
  }

  .zona-servicio{
    padding-top:35px;
    padding-bottom:35px;
  }

  .zona-texto h2{
    font-size:30px;
    line-height:1.15;
  }

  .zona-texto p{
    font-size:15px;
    line-height:1.5;
  }

  .mapa iframe{
    height:300px;
  }
}
.faq-grid{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.faq-item{
  background:#fff;
  border-radius:14px;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
  overflow:hidden;
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:18px 20px;
  font-weight:700;
  color:var(--azul);
  position:relative;
  font-size:18px;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  font-size:28px;
  color:var(--azul);
}

.faq-item[open] summary::after{
  content:"−";
}

.faq-item p{
  padding:0 20px 18px;
  margin:0;
  line-height:1.6;
  color:#555;
}

@media (max-width:768px){

  .faq-item summary{
    font-size:16px;
    padding:16px;
  }

  .faq-item p{
    padding:0 16px 16px;
    font-size:14px;
  }

}
/* =====================================================
   PÁGINA REPARACIÓN DE VITRINAS REFRIGERADAS
===================================================== */

.hero-vitrinas{
    min-height:650px;
    display:flex;
    align-items:center;
    padding:80px 60px;
    background:
        linear-gradient(
            90deg,
            rgba(5,34,59,.96) 0%,
            rgba(5,34,59,.87) 42%,
            rgba(5,34,59,.80) 72%,
            rgba(5,34,59,.10) 100%
        ),
        url("./imagenes/vitrina-refrigerada.png") center right / cover no-repeat;
}

.hero-vitrinas .hero-content{
    max-width:720px;
}

.hero-vitrinas h1{
    color:white;
    font-size:58px;
    line-height:1.08;
    margin-bottom:22px;
}

.hero-vitrinas .hero-text{
    color:white;
    font-size:19px;
}

.hero-vitrinas .hero-badge{
    background:#f28c28;
    color:white;
}

.hero-vitrinas .feature i,
.hero-vitrinas .feature strong,
.hero-vitrinas .feature span{
    color:white;
}

/* AVERÍAS */

.problemas-vitrinas,
.tipos-vitrinas,
.proceso-vitrinas,
.negocios-vitrinas,
.faq-vitrinas,
.otros-servicios-vitrinas{
    width:94%;
    max-width:1300px;
    margin:75px auto;
}

.problemas-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.problemas-grid article{
    background:white;
    border-radius:20px;
    padding:30px 25px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    border:1px solid #e3ebf2;
    transition:.25s;
}

.problemas-grid article:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 32px rgba(0,0,0,.13);
}

.problemas-grid i{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:#eaf4fc;
    color:#0a3d62;
    font-size:28px;
    margin-bottom:20px;
}

.problemas-grid h3{
    color:#0a3d62;
    font-size:22px;
    margin-bottom:9px;
}

.problemas-grid p{
    color:#59636e;
}

/* TIPOS DE VITRINAS */

.tipos-vitrinas-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.tipo-vitrina-card{
    background:white;
    border-radius:22px;
    padding:30px;
    border-top:5px solid #f28c28;
    box-shadow:0 9px 26px rgba(0,0,0,.09);
    transition:.25s;
}

.tipo-vitrina-card:hover{
    transform:translateY(-6px);
}

.tipo-vitrina-icono{
    width:68px;
    height:68px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#0a3d62;
    color:white;
    font-size:30px;
    margin-bottom:20px;
}

.tipo-vitrina-card h3{
    color:#0a3d62;
    font-size:22px;
    margin-bottom:12px;
}

.tipo-vitrina-card p{
    color:#59636e;
    margin-bottom:18px;
}

.tipo-vitrina-card ul{
    list-style:none;
}

.tipo-vitrina-card li{
    margin-bottom:8px;
    color:#374151;
}

.tipo-vitrina-card li::before{
    content:"✓";
    color:#f28c28;
    font-weight:bold;
    margin-right:9px;
}

/* AVISO URGENTE */

.aviso-vitrina{
    width:94%;
    max-width:1300px;
    margin:75px auto;
    padding:35px 40px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:28px;
    color:white;
    border-radius:24px;
    background:linear-gradient(135deg,#062b49,#0a3d62);
    box-shadow:0 12px 30px rgba(0,0,0,.16);
}

.aviso-vitrina-icono{
    width:80px;
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#f28c28;
    font-size:36px;
}

.aviso-vitrina-texto span{
    color:#f28c28;
    text-transform:uppercase;
    font-weight:800;
    letter-spacing:1px;
}

.aviso-vitrina-texto h2{
    font-size:30px;
    line-height:1.2;
    margin:7px 0;
}

.aviso-vitrina-texto p{
    color:#e4edf5;
}

/* COMPONENTES */

.componentes-vitrinas{
    width:94%;
    max-width:1300px;
    margin:75px auto;
    display:grid;
    grid-template-columns:340px 1fr;
    gap:35px;
    align-items:start;
}

.componentes-vitrinas-intro{
    background:#0a3d62;
    color:white;
    padding:38px 30px;
    border-radius:24px;
    position:sticky;
    top:105px;
}

.componentes-vitrinas-intro span{
    color:#f28c28;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
}

.componentes-vitrinas-intro h2{
    font-size:36px;
    line-height:1.1;
    margin:15px 0;
}

.componentes-vitrinas-intro p{
    margin-bottom:24px;
}

.componentes-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.componentes-grid article{
    display:flex;
    gap:18px;
    align-items:flex-start;
    background:white;
    border:1px solid #e3ebf2;
    border-radius:18px;
    padding:24px;
    box-shadow:0 7px 20px rgba(0,0,0,.07);
}

.componentes-grid i{
    color:#f28c28;
    font-size:31px;
    min-width:38px;
}

.componentes-grid h3{
    color:#0a3d62;
    font-size:20px;
    margin-bottom:5px;
}

.componentes-grid p{
    color:#59636e;
    font-size:15px;
}

/* PROCESO */

.proceso-vitrinas-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.proceso-vitrinas-grid article{
    position:relative;
    background:white;
    padding:35px 25px 28px;
    border-radius:22px;
    box-shadow:0 9px 26px rgba(0,0,0,.09);
    text-align:center;
    overflow:hidden;
}

.numero-proceso{
    position:absolute;
    right:14px;
    top:-10px;
    color:#edf3f8;
    font-size:72px;
    font-weight:900;
    line-height:1;
}

.proceso-vitrinas-grid i{
    position:relative;
    color:#f28c28;
    font-size:39px;
    margin-bottom:18px;
}

.proceso-vitrinas-grid h3{
    position:relative;
    color:#0a3d62;
    font-size:21px;
    margin-bottom:10px;
}

.proceso-vitrinas-grid p{
    position:relative;
    color:#59636e;
}

/* NEGOCIOS */

.negocios-vitrinas{
    background:white;
    padding:55px 40px;
    border-radius:26px;
    box-shadow:0 9px 28px rgba(0,0,0,.08);
}

.negocios-vitrinas-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.negocios-vitrinas-grid span{
    text-align:center;
    color:#0a3d62;
    font-weight:800;
    padding:20px 10px;
    border-radius:16px;
    background:#f2f7fb;
}

.negocios-vitrinas-grid i{
    display:block;
    color:#f28c28;
    font-size:36px;
    margin-bottom:12px;
}

/* ZONA */

.zona-vitrinas{
    width:94%;
    max-width:1300px;
    margin:75px auto;
    border-radius:28px;
    color:white;
    overflow:hidden;
    background:
        linear-gradient(90deg,rgba(5,34,59,.97),rgba(5,34,59,.78)),
        url("./imagenes/camara-frigorifica.png") center / cover no-repeat;
}

.zona-vitrinas-contenido{
    max-width:900px;
    padding:65px 55px;
}

.zona-vitrinas-contenido > span{
    color:#f28c28;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
}

.zona-vitrinas h2{
    font-size:43px;
    line-height:1.15;
    margin:14px 0;
}

.zona-vitrinas p{
    font-size:18px;
    margin-bottom:28px;
}

.zona-vitrinas-lista{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.zona-vitrinas-lista span{
    padding:13px;
    border-radius:11px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    font-weight:bold;
}

.zona-vitrinas-lista i{
    color:#f28c28;
    margin-right:7px;
}

/* FAQ */

.faq-vitrinas-grid{
    display:grid;
    gap:15px;
    max-width:1000px;
    margin:auto;
}

.faq-vitrinas details{
    background:white;
    border-radius:16px;
    padding:0 24px;
    box-shadow:0 6px 18px rgba(0,0,0,.07);
    border:1px solid #e3ebf2;
}

.faq-vitrinas summary{
    cursor:pointer;
    color:#0a3d62;
    font-weight:800;
    font-size:18px;
    padding:22px 35px 22px 0;
    position:relative;
}

.faq-vitrinas summary::after{
    content:"+";
    position:absolute;
    right:0;
    top:18px;
    color:#f28c28;
    font-size:29px;
}

.faq-vitrinas details[open] summary::after{
    content:"−";
}

.faq-vitrinas details p{
    color:#59636e;
    padding:0 0 22px;
}

/* OTROS SERVICIOS */

.otros-servicios-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.otros-servicios-grid a{
    background:white;
    border-radius:20px;
    padding:28px 23px;
    color:#1f2933;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    border-bottom:5px solid #0a3d62;
    transition:.25s;
}

.otros-servicios-grid a:hover{
    transform:translateY(-6px);
    border-bottom-color:#f28c28;
}

.otros-servicios-grid i{
    color:#f28c28;
    font-size:36px;
    margin-bottom:16px;
}

.otros-servicios-grid h3{
    color:#0a3d62;
    font-size:20px;
    margin-bottom:8px;
}

.otros-servicios-grid p{
    color:#59636e;
}

/* CTA FINAL */

.cta-vitrinas{
    width:94%;
    max-width:1300px;
    margin:75px auto;
    padding:75px 40px;
    border-radius:28px;
    color:white;
    text-align:center;
    background:
        linear-gradient(rgba(5,34,59,.89),rgba(5,34,59,.92)),
        url("./imagenes/vitrina-refrigerada.png") center / cover no-repeat;
    box-shadow:0 14px 34px rgba(0,0,0,.18);
}

.cta-vitrinas-contenido{
    max-width:900px;
    margin:auto;
}

.cta-vitrinas-contenido > span{
    color:#f28c28;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
}

.cta-vitrinas h2{
    font-size:48px;
    line-height:1.12;
    margin:14px 0 18px;
}

.cta-vitrinas p{
    font-size:18px;
}

.cta-vitrinas-ventajas{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:24px;
    margin:28px 0;
    font-weight:bold;
}

.cta-vitrinas-ventajas i{
    color:#f28c28;
    margin-right:7px;
}

.cta-vitrinas .hero-buttons{
    justify-content:center;
}

/* RESPONSIVE */

@media(max-width:1000px){

    .problemas-grid,
    .tipos-vitrinas-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .componentes-vitrinas{
        grid-template-columns:1fr;
    }

    .componentes-vitrinas-intro{
        position:relative;
        top:auto;
    }

    .proceso-vitrinas-grid,
    .otros-servicios-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .negocios-vitrinas-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .zona-vitrinas-lista{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .hero-vitrinas{
        min-height:auto;
        padding:55px 20px;
        text-align:left;
        background:
            linear-gradient(rgba(5,34,59,.86),rgba(5,34,59,.92)),
            url("./imagenes/vitrina-refrigerada.png") center / cover no-repeat;
    }

    .hero-vitrinas h1{
        font-size:38px;
    }

    .hero-vitrinas .hero-text{
        font-size:17px;
    }

    .hero-vitrinas .hero-features{
        display:none;
    }

    .problemas-grid,
    .tipos-vitrinas-grid,
    .componentes-grid,
    .proceso-vitrinas-grid,
    .otros-servicios-grid{
        grid-template-columns:1fr;
    }

    .aviso-vitrina{
        grid-template-columns:1fr;
        text-align:center;
        padding:32px 22px;
    }

    .aviso-vitrina-icono{
        margin:auto;
    }

    .negocios-vitrinas{
        padding:40px 20px;
    }

    .negocios-vitrinas-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .zona-vitrinas-contenido{
        padding:48px 22px;
    }

    .zona-vitrinas h2{
        font-size:33px;
    }

    .zona-vitrinas-lista{
        grid-template-columns:1fr;
    }

    .cta-vitrinas{
        padding:55px 22px;
    }

    .cta-vitrinas h2{
        font-size:34px;
    }

    .cta-vitrinas-ventajas{
        flex-direction:column;
        gap:10px;
    }
}

@media(max-width:480px){

    .negocios-vitrinas-grid{
        grid-template-columns:1fr;
    }
}
.servicio-foto-link{
    display:block;
    text-decoration:none;
    color:inherit;
}

.servicio-foto-link:hover{
  display:block;
  text-decoration:none;
    color:inherit;
}
.servicio-foto-link{
    display:block;
    position:relative;
    z-index:10;
    pointer-events:auto;
    text-decoration:none;
    color:inherit;
}

.servicio-foto-link *{
    pointer-events:none;
}
/* HERO CÁMARAS FRIGORÍFICAS */

.hero-camaras{
    min-height:650px;
    display:flex;
    align-items:center;
    padding:80px 60px;
    background:
        linear-gradient(
            90deg,
            rgba(5,34,59,.96) 0%,
            rgba(5,34,59,.88) 42%,
            rgba(5,34,59,.35) 72%,
            rgba(5,34,59,.10) 100%
        ),
        url("./imagenes/servicio-camaras.png") center right / cover no-repeat;
}

.hero-camaras .hero-content{
    max-width:720px;
}

.hero-camaras h1{
    color:white;
    font-size:58px;
    line-height:1.08;
    margin-bottom:22px;
}

.hero-camaras .hero-text{
    color:white;
    font-size:19px;
}

.hero-camaras .hero-badge{
    background:#f28c28;
    color:white;
}

.hero-camaras .feature i,
.hero-camaras .feature strong,
.hero-camaras .feature span{
    color:white;
}

@media(max-width:768px){

    .hero-camaras{
        min-height:auto;
        padding:55px 20px;
        text-align:left;
        background:
            linear-gradient(rgba(5,34,59,.86),rgba(5,34,59,.92)),
            url("./imagenes/servicio-camaras.png") 78% center / cover no-repeat;
    }

    .hero-camaras h1{
        font-size:38px;
    }

    .hero-camaras .hero-text{
        font-size:17px;
    }

    .hero-camaras .hero-features{
        display:none;
    }
}