/* =========================
   GRACEL Base (v1)
   ========================= */

:root{
  /* Logo colors */
  --gr-black: #000000;
  --gr-blue:  #003399;
  --gr-navy:  #062365;
  --gr-gold:  #A98241;

  /* UI neutrals */
  --gr-bg: #ffffff;
  --gr-text: #0b1220;
  --gr-muted: #6b7280;
  --gr-line: #e5e7eb;

  /* Layout */
  --gr-container: 1440px;
  --gr-container-1280: 1280px;
  --gr-container-600: 700px;
  --gr-radius-lg: 26px;

  /* Type */
  --gr-font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans";
}

/* Container 1440 */
.gr-container{
  max-width: var(--gr-container);
  padding-left: 24px;
  padding-right: 24px;
}

.gr-container2{
  max-width: var(--gr-container-1280);
  padding-left: 24px;
  padding-right: 24px;
}

.gr-container3{
  max-width: var(--gr-container-600);
  padding-left: 24px;
  padding-right: 24px;
}




/* Global */
body{
  font-family: var(--gr-font);
  color: var(--gr-text);
  background: var(--gr-bg);
}

/* =========================
   NAV
   ========================= */
.gr-header{
  background: var(--gr-bg);
}

.gr-navbar{
  padding-top: 18px;
  padding-bottom: 18px;
}

.gr-brand__logo{
  height: 34px;
  width: auto;
  display: block;
}

/* Links centrados como tu diseño */
.gr-navlinks .nav-link{
  font-weight: 600;
  color: #111827;
  padding: 10px 14px;
}

.gr-navlinks .nav-link.active{
  color: var(--gr-blue);
}

/* Botón estilo “CONTACT US” */
.gr-btn{
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  letter-spacing: .02em;
  border: 1px solid transparent;
}

.gr-btn--dark{
  background: #111827;
  color: #fff;
}
.gr-btn--dark:hover{
  background: #0b1220;
  color: #fff;
}

/* =========================
   HERO
   ========================= */
.gr-hero{
  padding-top: 44px;
  padding-bottom: 44px;
}

.gr-hero__kicker{
  color: var(--gr-blue);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gr-hero__title{
  font-weight: 900;
  color: var(--gr-navy);
  line-height: 1.02;
  font-size: clamp(44px, 4.4vw, 64px);
  margin: 0;
}

.gr-hero__text{
  color: var(--gr-muted);
  max-width: 52ch;
  font-size: 15px;
}

/* Botón Cotizar (azul) */
.gr-btn--primary{
  background: var(--gr-blue);
  color: #fff;
}
.gr-btn--primary:hover{
  background: var(--gr-navy);
  color: #fff;
}

.gr-hero__cta{
  padding: 12px 18px;
  border-radius: 10px;
}

/* Media card (imagen derecha) */
.gr-hero__media{
  border-radius: var(--gr-radius-lg);
  overflow: hidden;
  background: #f3f4f6;
  /* sombra suave como el mock */
  box-shadow: 0 18px 45px rgba(2, 6, 23, .10);
  max-width: 520px;
  margin-left: auto;
}

.gr-hero__img{
  width: 100%;
  height: auto;
  display: block;
}

/* Métricas */
.gr-metrics{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  max-width: 520px;
}

.gr-metric{
  display: flex;
  gap: 12px;
  align-items: center;
}

.gr-metric__icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--gr-gold);
  background: rgba(169, 130, 65, .12);
}

.gr-metric__num{
  font-weight: 900;
  color: #111827;
  line-height: 1;
}

.gr-metric__label{
  color: var(--gr-muted);
  font-size: 12px;
  margin-top: 3px;
}

/* Responsive tweak */
@media (max-width: 991px){
  .gr-hero__media{
    max-width: 100%;
    margin-left: 0;
  }
}


/* =========================
   SECCIÓN 2: Productos destacados
   ========================= */
.gr-featured{
  padding-top: 60px;
  padding-bottom: 70px;
  background: var(--gr-bg);
}

.gr-featured__head{
  margin-bottom: 34px;
}

.gr-featured__title{
  font-weight: 900;
  color: #111827;
  font-size: clamp(28px, 2.4vw, 40px);
  margin-bottom: 8px;
}

.gr-featured__subtitle{
  color: var(--gr-muted);
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.6;
}

/* Cards */
.gr-featured-card{
  display: block;
  text-decoration: none;
  border-radius: 10px; /* similar al mock */
  border: 1px solid rgba(2,6,23,.08);
  background: #fff;
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.gr-featured-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(2,6,23,.10);
}

.gr-featured-card__media{
  background: #fff;
  /* controla altura consistente en la grilla */
  height: 270px;
  display: grid;
  place-items: center;
  padding: 16px;
}

.gr-featured-card__img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* CTA */
.gr-featured__cta{
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: .02em;
}


/* =========================
   SECCIÓN 3: Tabs + Carrusel
========================== */
.gr-cat{
  padding-top: 60px;
  padding-bottom: 70px;
  background: var(--gr-bg);
}

.gr-cat__top{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.gr-cat__title{
  font-weight: 900;
  color: #111827;
  font-size: clamp(22px, 2vw, 32px);
  margin: 0 0 4px;
}
.gr-cat__subtitle{
  margin: 0;
  color: var(--gr-muted);
  font-size: 14px;
}

/* Tabs */
.gr-cat__tabs{
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 999px;
  background: #fff;
}

.gr-tab{
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: #111827;
  font-size: 13px;
  transition: background .18s ease, color .18s ease;
}

.gr-tab.is-active{
  background: var(--gr-blue);
  color: #fff;
}

/* Carrusel base */
.gr-carousel{
  position: relative;
}

.gr-carousel__viewport{
  overflow: hidden;
}

.gr-carousel__track{
  display: flex;
  gap: 16px;
  align-items: stretch;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding: 10px 2px 6px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gr-carousel__track::-webkit-scrollbar{ display: none; }

/* Controls */
.gr-carousel__ctrl{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.10);
  background: #fff;
  box-shadow: 0 10px 22px rgba(2,6,23,.10);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform .15s ease;
}
.gr-carousel__ctrl:hover{ transform: translateY(-50%) scale(1.03); }

.gr-carousel__ctrl--prev{ left: -10px; }
.gr-carousel__ctrl--next{ right: -10px; }

/* Card de producto */
.gr-pcard{
  width: 260px;              /* ancho fijo para carrusel */
  flex: 0 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,.08);
  background: #fff;
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
  overflow: hidden;
}


.gr-pcard__media{
  width: 100%;
  height: 215px;          /* alto fijo del bloque imagen */
  padding: 0;             /* sin padding para que llene */
  background: #F3F3F3;
  overflow: hidden;       /* por si cover recorta */
  border-radius: 14px 14px 0 0; /* si quieres igual al card */
}

.gr-pcard__img{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* llena */
  display: block;
}




.gr-pcard__body{
  padding: 12px 14px 14px;
}

.gr-pcard__title{
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 4px;
  color: #111827;
}

.gr-pcard__meta{
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--gr-muted);
}

/* CTA pequeño (placeholder) */
.gr-pcard__cta{
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(0,51,153,.22);
  color: var(--gr-blue);
  background: #fff;
}
.gr-pcard__cta:hover{
  background: rgba(0,51,153,.06);
  border-color: rgba(0,51,153,.30);
  color: var(--gr-blue);
}

/* Último item "Ver todos" */
.gr-seeall{
  width: 260px;
  flex: 0 0 auto;
  border-radius: 14px;
  border: 1px dashed rgba(0,51,153,.35);
  background: linear-gradient(180deg, #fff, rgba(0,51,153,.03));
  text-decoration: none;
  display: grid;
  place-items: center;
  padding: 18px;
  min-height: 285px;
}

.gr-seeall__inner{
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.gr-seeall__icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(0,51,153,.10);
  color: var(--gr-blue);
  font-size: 22px;
}

.gr-seeall__text strong{
  display: block;
  font-weight: 900;
  color: #111827;
}
.gr-seeall__text span{
  display: block;
  font-size: 12px;
  color: var(--gr-muted);
}

/* Responsive: controles dentro en mobile */
@media (max-width: 575px){
  .gr-carousel__ctrl--prev{ left: 6px; }
  .gr-carousel__ctrl--next{ right: 6px; }
}


/* =========================
   SECCIÓN 4: Spotlight (Destacado)
========================== */
.gr-spotlight{
  padding-top: 70px;
  padding-bottom: 70px;
  background: var(--gr-bg);
}

.gr-spotlight__copy{
  max-width: 520px;
}

.gr-spotlight__title{
  font-weight: 900;
  color: #111827;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.04;
  margin: 0 0 12px;
}

.gr-spotlight__text{
  color: var(--gr-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 54ch;
}

.gr-spotlight__cta{
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 900;
  letter-spacing: .02em;
  position: relative;
}

/* Subrayado naranja sutil como en tu referencia */
.gr-spotlight__cta::after{
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -6px;
  height: 3px;
  border-radius: 999px;
  background: #F59E0B; /* acento */
  opacity: .9;
}

/* Wrap para card + franja azul */
.gr-spotlight__mediaWrap{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 260px;
}

/* Card de imagen */
.gr-spotlight__mediaCard{
  width: min(420px, 100%);
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 18px 45px rgba(2, 6, 23, .12);
  padding: 18px;
  position: relative;
  z-index: 2;
}

.gr-spotlight__img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Barra azul a la derecha */
.gr-spotlight__bar{
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 120px;
  border-radius: 0;
  background: var(--gr-blue);
  z-index: 1;
}

/* Responsive: barra azul pasa abajo o se reduce */
@media (max-width: 991px){
  .gr-spotlight__mediaWrap{
    justify-content: center;
  }
  .gr-spotlight__bar{
    top: auto;
    bottom: -10px;
    height: 90px;
    width: 70%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

/* =========================
   SECCIÓN: Testimonios
========================== */
.gr-testimonials{
  padding-top: 70px;
  padding-bottom: 80px;
  background: #fff;
}

.gr-testimonials__head{
  margin-bottom: 34px;
}

.gr-testimonials__title{
  font-weight: 900;
  color: #111827;
  font-size: clamp(26px, 2.4vw, 40px);
  margin: 0 0 8px;
}

.gr-testimonials__subtitle{
  margin: 0 auto;
  max-width: 60ch;
  color: var(--gr-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Card */
.gr-tcard{
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,.08);
  background: #fff;
  box-shadow: 0 12px 28px rgba(2,6,23,.08);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}

/* “Comillas” grandes */
.gr-tcard__quote{
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  color: rgba(0,51,153,.15); /* azul suave */
  pointer-events: none;
}

/* Texto */
.gr-tcard__text{
  margin: 20px 0 14px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

/* Stars */
.gr-tcard__stars{
  display: flex;
  gap: 4px;
  color: var(--gr-gold);
  font-size: 14px;
  margin-bottom: 14px;
}

/* Persona */
.gr-tcard__person{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.gr-tcard__avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(0,51,153,.18);
}

.gr-tcard__name{
  font-weight: 900;
  color: #111827;
  font-size: 13px;
  line-height: 1.2;
}

.gr-tcard__role{
  color: var(--gr-muted);
  font-size: 12px;
}

/* Primera card destacada (tu estilo) */
.gr-tcard--featured{
  background: linear-gradient(180deg, rgba(0,51,153,.10), rgba(0,51,153,.04));
  border-color: rgba(0,51,153,.22);
}

.gr-tcard--featured .gr-tcard__quote{
  color: rgba(0,51,153,.25);
}

.gr-tcard--featured .gr-tcard__text{
  color: #334155;
}

/* =========================
   SECCIÓN: Contacto
========================== */
.gr-contact{
  padding-top: 70px;
  padding-bottom: 80px;
  background: #fff;
}

.gr-contact__head{
  margin-bottom: 34px;
}

.gr-contact__title{
  font-weight: 900;
  color: #111827;
  font-size: clamp(28px, 2.6vw, 44px);
  margin: 0;
}

/* Left info list */
.gr-contact__info{
  padding-top: 14px;
  display: grid;
  gap: 26px;
  max-width: 420px;
}

.gr-cinfo{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.gr-cinfo__icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gr-gold);
  background: rgba(169, 130, 65, .14);
  font-size: 20px;
}

.gr-cinfo__title{
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
}

.gr-cinfo__text{
  color: var(--gr-muted);
  font-size: 13px;
  margin-top: 3px;
}

/* Right form wrapper */
/* .gr-contact__formWrap{
  max-width: 520px;
  margin-left: auto;
} */

.gr-form{
  width: 100%;
}

/* Labels */
.gr-form__label{
  font-weight: 800;
  font-size: 12px;
  color: #111827;
  margin-bottom: 6px;
  display: inline-block;
}

/* Inputs (soft like reference) */
.gr-form__control{
  border-radius: 10px;
  border: 1px solid rgba(2,6,23,.08);
  background: #F7F7F8;
  padding: 12px 12px;
  box-shadow: none;
}

.gr-form__control--textarea{
  min-height: 130px;
  resize: vertical;
}

.gr-form__control:focus{
  background: #fff;
  border-color: rgba(0, 51, 153, .35);
  box-shadow: 0 0 0 .25rem rgba(0, 51, 153, .12);
}

/* Submit button: ancho completo como el mock */
.gr-form__submit{
  width: 100%;
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 900;
  letter-spacing: .02em;
}

/* Responsive */
@media (max-width: 991px){
  .gr-contact__formWrap{
    margin-left: 0;
    max-width: 100%;
  }
  .gr-contact__info{
    max-width: 100%;
  }
}

/* =========================
   SECCIÓN: Artículos / Noticias
========================== */
.gr-news{
  padding-top: 60px;
  padding-bottom: 80px;
  background: #fff;
}

.gr-news__head{
  margin-bottom: 22px;
}

.gr-news__title{
  font-weight: 900;
  color: #111827;
  font-size: clamp(28px, 2.6vw, 44px);
  margin: 0;
}

/* Item */
.gr-news-item{
  display: flex;
  gap: 16px;
  align-items: center;
  text-decoration: none;
}

.gr-news-item__thumb{
  width: 230px;            /* similar al mock */
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  background: #0b1220;     /* placeholder si no carga */
  box-shadow: 0 12px 28px rgba(2,6,23,.10);
  flex: 0 0 auto;
}

.gr-news-item__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gr-news-item__body{
  flex: 1;
  min-width: 0;
}

.gr-news-item__title{
  font-weight: 900;
  color: #111827;
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.35;

  /* recorte a 2 líneas como diseño */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gr-news-item__excerpt{
  margin: 0;
  color: var(--gr-muted);
  font-size: 12px;

  /* recorte a 2 líneas */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hover */
.gr-news-item:hover .gr-news-item__title{
  color: var(--gr-blue);
}

/* Responsive */
@media (max-width: 575px){
  .gr-news-item{
    flex-direction: column;
    align-items: flex-start;
  }
  .gr-news-item__thumb{
    width: 100%;
    height: 160px;
  }
}

/* =========================
   FOOTER + Libro de Reclamaciones
========================== */
.gr-footer{
  position: relative;
  padding-top: 90px;     /* deja espacio para la tarjeta flotante */
  padding-bottom: 26px;
  background: #fff;
  border-top: 1px solid rgba(2,6,23,.06);
}

/* Grid */
.gr-footer__grid{
  padding-top: 16px;
  padding-bottom: 22px;
}

/* Brand */
.gr-footer__logo{
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.gr-footer__desc{
  color: var(--gr-muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 44ch;
}

.gr-footer__badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gr-footer__badge{
  font-size: 11px;
  font-weight: 800;
  color: #111827;
  background: #F3F3F3;
  border: 1px solid rgba(2,6,23,.06);
  border-radius: 999px;
  padding: 6px 10px;
}

/* Columns */
.gr-footer__title{
  font-weight: 900;
  color: #111827;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.gr-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.gr-footer__links a{
  color: #374151;
  text-decoration: none;
  font-size: 13px;
}
.gr-footer__links a:hover{
  color: var(--gr-blue);
}

/* Bottom */
.gr-footer__bottom{
  border-top: 1px solid rgba(2,6,23,.06);
  padding-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--gr-muted);
  font-size: 12px;
}

/* =========================
   Libro de Reclamaciones (floating card)
========================== */
.gr-claims{
  position: absolute;
  top: -34px;             /* se “sale” del footer */
  left: 110px;            /* similar a tu referencia (ajustable) */
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(2,6,23,.10);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(2,6,23,.12);
  text-decoration: none;
  z-index: 3;
}

.gr-claims__img{
  width: 64px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.gr-claims__text strong{
  display: block;
  font-weight: 900;
  color: var(--gr-blue);
  font-size: 13px;
  line-height: 1.1;
}

/* Hover */
.gr-claims:hover{
  transform: translateY(-1px);
}

/* Responsive: centrar el botón libro en mobile */
@media (max-width: 991px){
  .gr-claims{
    left: 50%;
    transform: translateX(-50%);
    top: -38px;
  }
  .gr-claims:hover{
    transform: translateX(-50%) translateY(-1px);
  }
}


/* =========================
   FOOTER
========================== */
.gr-footer{
  padding-top: 70px;
  padding-bottom: 0;
  background: #fff;
  border-top: 1px solid rgba(2,6,23,.06);
}

.gr-footer__grid{
  padding-bottom: 26px;
}

/* Brand */
.gr-footer__logo{
  height: 34px;
  margin-bottom: 10px;
}

.gr-footer__desc{
  color: var(--gr-muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 44ch;
}

.gr-footer__badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gr-footer__badge{
  font-size: 11px;
  font-weight: 800;
  background: #F3F3F3;
  border-radius: 999px;
  padding: 6px 10px;
}

/* Columns */
.gr-footer__title{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gr-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.gr-footer__links a{
  color: #374151;
  font-size: 13px;
  text-decoration: none;
}
.gr-footer__links a:hover{
  color: var(--gr-blue);
}

/* Libro de reclamaciones (columna) */
.gr-footer-claims{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(2,6,23,.10);
  border-radius: 10px;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 10px 22px rgba(2,6,23,.10);
}

.gr-footer-claims__img{
  width: 56px;
  height: 44px;
  object-fit: contain;
}

.gr-footer-claims__text{
  font-weight: 900;
  font-size: 12px;
  line-height: 1.1;
  color: var(--gr-blue);
}

/* Bottom */
.gr-footer__bottom{
  border-top: 1px solid rgba(2,6,23,.06);
  padding: 14px 0;
  color: var(--gr-muted);
  font-size: 12px;
}

/* =========================
   SUBFOOTER
========================== */
.gr-subfooter{
  background: #0b1220;
}

.gr-subfooter__inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  color: #9ca3af;
  font-size: 12px;
}

.gr-subfooter__logo{
  height: 22px;
  width: auto;
}

.mb-20{
    margin-bottom: 20px;
}

.mb-30{
    margin-bottom: 20px;
}

.mb-40{
    margin-bottom: 20px;
}


/* =========================
   CATÁLOGO
========================== */
.gr-catalog-hero{
  padding-top: 46px;
  padding-bottom: 22px;
  background: #fff;
}

.gr-catalog-hero__title{
  font-weight: 900;
  font-size: clamp(30px, 2.6vw, 44px);
  color: #111827;
  margin: 0 0 6px;
}

.gr-catalog-hero__text{
  color: var(--gr-muted);
  font-size: 14px;
  margin: 0;
  max-width: 70ch;
}

/* Tabs arriba */
.gr-catalog-tabs{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 999px;
  background: #fff;
  flex-wrap: wrap;
}

.gr-catalog-tabs .gr-tab{
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  color: #111827;
  font-size: 13px;
}

.gr-catalog-tabs .gr-tab.is-active{
  background: var(--gr-blue);
  color: #fff;
}

/* Filtros */
.gr-catalog-filters{
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 12px 28px rgba(2,6,23,.06);
}

.gr-search{
  position: relative;
}
.gr-search__icon{
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}
.gr-search__input{
  padding-left: 36px;
  border-radius: 10px;
  border: 1px solid rgba(2,6,23,.08);
  background: #F7F7F8;
}

.gr-filter{
  border-radius: 10px;
  border: 1px solid rgba(2,6,23,.08);
  background: #F7F7F8;
}

/* Grid wrapper */
.gr-catalog{
  padding-top: 22px;
  padding-bottom: 70px;
}

/* Card producto */
.gr-product{
  display: block;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,.08);
  background: #fff;
  box-shadow: 0 12px 28px rgba(2,6,23,.08);
  overflow: hidden;
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}

.gr-product:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(2,6,23,.10);
}

/* .gr-product__media{
  background: #F3F3F3;
  padding: 14px;
  display: grid;
  place-items: center;
}

.gr-product__img{
  width: 189px;
  height: 177px;
  object-fit: contain;
  display: block;
} */

.gr-product__media{
  background: #F3F3F3;
  height: 260px;          /* controla el alto visual */
  padding: 0;             /* SIN aire */
  display: block;
  overflow: hidden;       /* CLAVE */
}

.gr-product__img{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* LLENA */
  display: block;
}

.gr-product__body{
  padding: 12px 14px 14px;
}

.gr-product__title{
  font-weight: 900;
  font-size: 14px;
  color: #111827;
  margin: 0 0 4px;
}

.gr-product__meta{
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--gr-muted);
}

.gr-product__actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gr-product__chip{
  font-size: 11px;
  font-weight: 900;
  color: var(--gr-blue);
  background: rgba(0,51,153,.08);
  border: 1px solid rgba(0,51,153,.15);
  border-radius: 999px;
  padding: 6px 10px;
}

.gr-product__cta{
  font-size: 12px;
  font-weight: 900;
  color: #111827;
}

/* Pagination */
.gr-pagination{
  margin-top: 22px;
}
.gr-pagination .page-link{
  border-radius: 10px;
}

/* CTA inferior */
.gr-catalog-cta{
  margin-top: 30px;
}

.gr-catalog-cta__box{
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(2,6,23,.06);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.gr-catalog-cta__title{
  font-weight: 900;
  margin: 0 0 4px;
  font-size: 16px;
}
.gr-catalog-cta__text{
  margin: 0;
  color: var(--gr-muted);
  font-size: 13px;
}

@media (max-width: 991px){
  .gr-catalog-tabs{ justify-content: flex-start; }
}


/* =========================
   PDP (Detalle de producto)
========================== */
.gr-pdp-top{
  padding-top: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(2,6,23,.06);
  background: #fff;
}

.gr-pdp{
  padding-top: 22px;
  padding-bottom: 26px;
  background: #fff;
}

/* Gallery */
.gr-pdp-gallery{
  position: relative;
}

/* .gr-pdp-gallery__main{
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.08);
  background: #F3F3F3;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(2,6,23,.10);
  padding: 18px;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.gr-pdp-gallery__mainImg{
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
} */
/* =========================
   PDP – IMAGEN PRINCIPAL FULL
========================== */
.gr-pdp-gallery__main{
  background: #fff;        /* o #F3F3F3 si prefieres */
  height: 420px;           /* vitrina grande */
  padding: 0;              /* SIN aire */
  overflow: hidden;        /* CLAVE */
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 14px 34px rgba(2,6,23,.10);
  display: block;          /* NO grid */
}

.gr-pdp-gallery__mainImg{
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;      
  display: block;
}

/* .gr-pdp-gallery__mainImg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.92);
  object-position: center;
} */



@media (min-width: 1200px){
  .gr-pdp-gallery__main{
    height: 540px;
  }
}


@media (max-width: 575px){
  .gr-pdp-gallery__main{
    height: 300px;
  }
}


.gr-pdp-gallery__thumbs{
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.gr-thumb{
  width: 78px;
  height: 78px;
  border-radius: 12px;
  border: 1px solid rgba(2,6,23,.10);
  background: #fff;
  padding: 6px;
  display: grid;
  place-items: center;
  transition: transform .15s ease, border-color .15s ease;
}

.gr-thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gr-thumb.is-active{
  border-color: rgba(0,51,153,.55);
  box-shadow: 0 10px 22px rgba(0,51,153,.12);
}

.gr-thumb:hover{
  transform: translateY(-1px);
}

.gr-pdp-gallery__badges{
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.gr-badge{
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,51,153,.10);
  color: var(--gr-blue);
  border: 1px solid rgba(0,51,153,.18);
}
.gr-badge--soft{
  background: rgba(169,130,65,.12);
  color: #8a6a2f;
  border-color: rgba(169,130,65,.22);
}

/* Info */
.gr-pdp-info__title{
  font-weight: 900;
  color: #111827;
  font-size: clamp(24px, 2.4vw, 38px);
  margin: 0 0 8px;
}

.gr-pdp-info__short{
  color: var(--gr-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 70ch;
}

.gr-pdp-info__chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.gr-chip{
  font-size: 11px;
  font-weight: 900;
  border-radius: 999px;
  padding: 6px 10px;
  background: #F3F3F3;
  border: 1px solid rgba(2,6,23,.06);
  color: #111827;
}

.gr-pdp-info__selectors{
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 12px 28px rgba(2,6,23,.06);
  margin-bottom: 14px;
}

.gr-label{
  font-weight: 900;
  font-size: 12px;
  color: #111827;
  margin-bottom: 6px;
  display: inline-block;
}

.gr-input{
  border-radius: 10px;
  border: 1px solid rgba(2,6,23,.08);
  background: #F7F7F8;
}

.gr-input:focus{
  background: #fff;
  border-color: rgba(0, 51, 153, .35);
  box-shadow: 0 0 0 .25rem rgba(0, 51, 153, .12);
}

.gr-pdp-info__cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.gr-pdp-info__btn{
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 900;
}

/* Ghost button */
.gr-btn--ghost{
  background: #fff;
  color: #111827;
  border: 1px solid rgba(2,6,23,.10);
}
.gr-btn--ghost:hover{
  background: #f8fafc;
  color: #111827;
}

/* Specs summary */
.gr-specs{
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(2,6,23,.06);
  padding: 14px;
}

.gr-specs__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.gr-specs__title{
  margin: 0;
  font-weight: 900;
  font-size: 14px;
}

.gr-specs__note{
  color: var(--gr-muted);
  font-size: 11px;
}

.gr-specs__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
}

.gr-spec{
  padding: 10px;
  border-radius: 12px;
  background: #F9FAFB;
  border: 1px solid rgba(2,6,23,.06);
}

.gr-spec dt{
  font-size: 11px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 3px;
}

.gr-spec dd{
  margin: 0;
  color: #334155;
  font-size: 12px;
}

/* Tabs */
.gr-pdp-tabs{
  padding-top: 10px;
  padding-bottom: 40px;
  background: #fff;
}

.gr-tabs{
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.08);
  background: #fff;
}

.gr-tabs__btn{
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  color: #111827;
}
.gr-tabs__btn.is-active{
  background: var(--gr-blue);
  color: #fff;
}

.gr-tabpanels{
  margin-top: 14px;
}

.gr-panel{
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(2,6,23,.06);
  padding: 16px;
}

.gr-panel__text{
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 10px;
}

.gr-bullets{
  margin: 0;
  padding-left: 18px;
  color: #374151;
  font-size: 13px;
  display: grid;
  gap: 6px;
}

.gr-box{
  border: 1px solid rgba(2,6,23,.06);
  border-radius: 14px;
  background: #F9FAFB;
  padding: 14px;
}

.gr-box__title{
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 13px;
}

.gr-list{
  margin: 0;
  padding-left: 18px;
  color: #374151;
  font-size: 13px;
  display: grid;
  gap: 6px;
}

/* Downloads */
.gr-downloads{
  display: grid;
  gap: 10px;
}

.gr-download{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 14px;
  background: #F9FAFB;
  padding: 12px 14px;
  color: #111827;
}
.gr-download i{
  font-size: 20px;
  color: var(--gr-blue);
}
.gr-download small{
  display: block;
  color: var(--gr-muted);
}
.gr-download:hover{
  background: #fff;
}

/* Related */
.gr-related{
  padding-top: 10px;
  padding-bottom: 70px;
  background: #fff;
}

.gr-related__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.gr-related__title{
  margin: 0;
  font-weight: 900;
  font-size: 18px;
}

.gr-related__link{
  text-decoration: none;
  font-weight: 900;
  color: var(--gr-blue);
  font-size: 13px;
}


/* =========================
   SECCIÓN: Quiénes Somos
========================== */
.gr-about{
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
}

.gr-about__kicker{
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gr-blue);
  margin-bottom: 10px;
}

.gr-about__title{
  font-weight: 900;
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.1;
  margin: 0 0 14px;
  color: #111827;
}

.gr-about__title strong{
  color: var(--gr-blue);
}

.gr-about__text{
  color: #4b5563;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 14px;
  max-width: 65ch;
}

.gr-about__list{
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: #374151;
}

/* Cards */
.gr-about__cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gr-about-card{
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(2,6,23,.08);
}

.gr-about-card__num{
  font-size: 22px;
  font-weight: 900;
  color: var(--gr-blue);
}

.gr-about-card__title{
  margin: 6px 0 6px;
  font-weight: 900;
  font-size: 14px;
  color: #111827;
}

.gr-about-card p{
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 991px){
  .gr-about__cards{
    grid-template-columns: 1fr;
  }
}


/* =========================
   BANDA DE LOGOS
========================== */
.gr-logos{
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}

.gr-logos__head{
  margin-bottom: 18px;
}

.gr-logos__title{
  font-weight: 900;
  color: #111827;
  font-size: clamp(20px, 2vw, 30px);
  margin: 0 0 6px;
}

.gr-logos__subtitle{
  margin: 0 auto;
  max-width: 60ch;
  color: var(--gr-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Marquee wrapper */
.gr-marquee{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(2,6,23,.06);
  padding: 16px 0;
}

/* Fade edges (modern look) */
.gr-marquee::before,
.gr-marquee::after{
  content:"";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.gr-marquee::before{
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}

.gr-marquee::after{
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}

/* Track animation */
.gr-marquee__track{
  display: flex;
  width: max-content;
  animation: gr-marquee 22s linear infinite;
}

/* Pause on hover */
.gr-marquee:hover .gr-marquee__track{
  animation-play-state: paused;
}

/* Each set */
.gr-marquee__set{
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 0 28px;
}

/* Logo style */
.gr-logo{
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: .85;
  filter: grayscale(100%);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}

.gr-logo:hover{
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-1px);
}

/* Animation */
@keyframes gr-marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 575px){
  .gr-marquee::before,
  .gr-marquee::after{
    width: 48px;
  }
  .gr-marquee__set{
    gap: 26px;
  }
  .gr-logo{
    height: 28px;
  }

 
  .gr-product__media{
    height: 170px;
  }


}


/* =========================
   SECCIÓN MAPA / UBÍCANOS
========================== */
.gr-map{
  padding-top: 70px;
  padding-bottom: 80px;
  background: #fff;
}

.gr-map__head{
  margin-bottom: 16px;
}

.gr-map__title{
  font-weight: 900;
  color: #111827;
  font-size: clamp(22px, 2.2vw, 34px);
  margin: 0 0 6px;
}

.gr-map__subtitle{
  margin: 0;
  color: var(--gr-muted);
  font-size: 13px;
  max-width: 70ch;
}

/* Mapa */
.gr-map__frame{
  height: 100%;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 14px 34px rgba(2,6,23,.08);
  background: #F3F3F3;
}

.gr-map__frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Card */
.gr-map__card{
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 14px 34px rgba(2,6,23,.08);
  background: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gr-map__cardTitle{
  margin: 0 0 4px;
  font-weight: 900;
  font-size: 16px;
  color: #111827;
}

.gr-map__row{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.gr-map__row i{
  font-size: 18px;
  line-height: 1;
  color: var(--gr-blue);
  margin-top: 2px;
}

.gr-map__row strong{
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 2px;
}

.gr-map__row p{
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

.gr-map__actions{
  margin-top: 6px;
  display: grid;
  gap: 10px;
}

.gr-map__note{
  margin-top: auto;
  font-size: 12px;
  color: var(--gr-muted);
  border-top: 1px solid rgba(2,6,23,.06);
  padding-top: 10px;
}

/* Responsive */
@media (max-width: 575px){
  .gr-map__frame{
    min-height: 340px;
  }
}


.gr-legal{
  padding: 72px 0;
  background: #fff;
}

.gr-legal__head{
  margin-bottom: 18px;
}

.gr-legal__title{
  font-weight: 900;
  margin: 0 0 8px;
  font-size: clamp(26px, 2.6vw, 40px);
  color: #111827;
}

.gr-legal__subtitle{
  margin: 0;
  color: var(--gr-muted);
  max-width: 75ch;
}

.gr-legal__card{
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(2,6,23,.08);
  padding: 22px;
}

.gr-legal__content p{
  margin: 0 0 14px;
  line-height: 1.9;
  color: #374151;
}

.gr-legal__content h2,
.gr-legal__content h3{
  margin: 20px 0 10px;
  font-weight: 900;
  color: #111827;
}

.gr-legal__content ul,
.gr-legal__content ol{
  margin: 10px 0 16px;
  padding-left: 18px;
}

.gr-legal__content a{
  color: var(--gr-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
