﻿.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 80px);
  padding: 0 80px;
  overflow: hidden;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• DECORACIONES DE ESQUINAS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-deco {
  position: absolute;
  width: 180px;
  height: 180px;
  background: #EB690B;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.hero-deco--tl {
  top: -80px;
  left: -80px;
}

.hero-deco--br {
  bottom: -80px;
  right: -80px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• CONTENIDO IZQUIERDO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 0 0 auto;
  width: 100%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0;
  animation: iFadeInDown 1s ease-out 0.8s both;
}

.hero-title--accent {
  color: #EB690B;

}

.hero-desc {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  max-width: 420px;
  margin: 0;
  animation: iFadeInUp 1s ease-out 1.6s both;
}

.hero-btn {
  display: inline-block;
  align-self: flex-start;
  width: 230px;
  text-align: center;
  padding: 12px 0;
  border: 2px solid #EB690B;
  border-radius: 8px;
  color: #EB690B;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  animation: iZoomIn 1s ease-out 2.4s both;
}

.hero-btn:hover {
  background: #EB690B;
  color: #fff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• IMAGEN ANCLADA A LA DERECHA â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  z-index: 1;
  animation: iFadeIn 1s ease-out 0s both;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(to right,
      #FFFFFF 0%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-img {
  height: 100%;
  width: auto;
  display: block;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
  .hero-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-img {
    width: 100%;
    object-fit: cover;
  }

  .hero-section {
    padding: 0;
    justify-content: center;
  }

  .hero-content {
    padding: 40px 24px;
    text-align: center;
    align-items: center;
  }

  .hero-btn {
    align-self: center;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• DOTS DE NAVEGACIÃ“N â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  background: #d4d4d4;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot:hover {
  transform: scale(1.2);
  background: #EB690B;
}

.hero-dot.active {
  background: #EB690B;
  width: 24px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .hero-dots {
    bottom: 20px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• FIN HERO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• NOVEDADES CARRUSEL â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#novedades {
  background: #D4D4D4;
}

.nov-carousel {
  margin-top: 36px;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}

.nov-viewport {
  overflow: hidden;
  width: 100%;
}

.nov-track {
  display: flex;
  align-items: stretch;
  /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• TODAS LAS TARJETAS MISMA ALTURA â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}

.nov-card {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
}

.nov-card__inner {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  height: 200px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background-color 0.4s ease;
  cursor: pointer;
}

.nov-card__content {
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
  max-width: 90%;
  opacity: 0;
  transform: translateY(15px);
}

.nov-card__inner:hover .nov-card__content {
  opacity: 1;
  transform: translateY(0);
}

.nov-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.nov-card__desc {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nov-card__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(249, 115, 22, 0.65);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.nov-card__inner:hover::after {
  opacity: 1;
}

.nov-card__img {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 8px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  z-index: 1;
  transition: transform 0.4s ease;
}

.nov-card__action {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.nov-card__inner:hover .nov-card__action {
  opacity: 1;
  transform: translateY(0);
}

.nov-card__btn {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 4px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1000px) {
  .nov-card {
    flex: 0 0 calc(100% / 2);
  }
}

@media (max-width: 600px) {
  .nov-card {
    flex: 0 0 100%;
  }

  #novedades {
    padding: 30px 12px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• FIN NOVEDADES â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

#nuestrasLineas #lineas-container {
  min-height: 0;
}

#nuestrasLineas #lineas-container:empty {
  min-height: 320px;
}

#nuestrasLineas .c-grid {
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  #nuestrasLineas {
    padding: 40px 24px 36px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• PALETA CORPORATIVA COMPIPRO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --cp-naranja: #EB690B;
  --cp-negro: #000000;
  --cp-gris: #666666;
  --cp-blanco: #FFFFFF;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• POTENCIAMOS TU CRECIMIENTO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#potenciamosCrecimiento {
  background: #000000;
  min-height: 550px;
}

.pot-grid {
  margin-top: 48px;
}

.pot-grid__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pot-carousel {
  margin-top: 48px;
  overflow: hidden;
}

.pot-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.pot-carousel__track::-webkit-scrollbar {
  display: none;
}

.pot-carousel .pot-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}

.pot-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.pot-carousel__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(235, 105, 11, 0.55);
  background: rgba(235, 105, 11, 0.12);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pot-carousel__btn:hover {
  background: #EB690B;
  border-color: #EB690B;
}

.pot-card {
  height: 100%;
}

.pot-card:hover {
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.2);
}

.pot-card .c-card__img-wrap {
  height: 300px;
  aspect-ratio: unset;
}

.c-card.pot-card .c-card__img-wrap {
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 14px 14px 0 0 !important;
  background-color: #000 !important;
}

.c-card.pot-card .c-card__img-wrap .c-card__img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 14px 14px 0 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.pot-card .c-card__desc {
  font-weight: 600;
  color: #1a1a1a;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• FIN POTENCIAMOS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.section-title span {
  color: #EB690B;
  font-style: normal;
}

.donde-estamos {
  background-color: #303030;
  text-align: center;
}

.donde-estamos .section-title {
  color: #ffffff;
  margin-bottom: 30px;
}

.ubicacion {
  width: 100%;
  margin-top: 20px;
}

.ubicacion iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• NUESTROS CLIENTES â€“ MARQUEE INFINITO â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#clientes {
  padding: 64px 0 56px;
  overflow: hidden;
}

#clientes .section-title {
  margin-bottom: 40px;
}

.clientes-marquee {
  position: relative;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  overflow: hidden;


  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #000 12%,
      #000 88%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      #000 12%,
      #000 88%,
      transparent 100%);
}

.clientes-marquee__inner {
  display: flex;
  width: max-content;
}

.clientes-marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  animation: marquee-scroll 120s linear infinite;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• LOGO INDIVIDUAL â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cliente-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• SEPARACIÃ“N ENTRE LOGOS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
  flex-shrink: 0;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.cliente-logo:hover {
  filter: none !important;
  transform: scale(1.08);
}

.cliente-logo__img {
  height: 100px;
  max-width: 160px;
  width: auto;
  aspect-ratio: 15 / 8;
  object-fit: contain;

  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.35s ease;
}

.cliente-logo:hover .cliente-logo__img {
  filter: grayscale(0%) opacity(1);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
  #clientes {
    padding: 50px 0 44px;
  }

  .cliente-logo {
    padding: 0 36px;
  }

  .cliente-logo__img {
    height: 44px;
    max-width: 120px;
    aspect-ratio: 15 / 8;
  }

  .clientes-marquee__track {
    animation-duration: 70s;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• FIN CLIENTES MARQUEE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• PROYECTOS REALIZADOS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#proyRealizados {
  background: #0d0d0d;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 900px) {
  #proyRealizados {
    padding: 50px 24px 60px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• FIN PROYECTOS REALIZADOS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• PROYECTOS INDEX CAROUSEL â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.proy-idx-carousel {
  margin-top: 36px;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}

.proy-idx-viewport {
  overflow: hidden;
  width: 100%;
}

.proy-idx-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}

.proy-idx-card {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
}

.proy-idx-card__inner {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  height: 200px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background-color 0.4s ease;
  cursor: pointer;
}

.proy-idx-card__content {
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
  max-width: 90%;
  opacity: 0;
  transform: translateY(15px);
}

.proy-idx-card__inner:hover .proy-idx-card__content {
  opacity: 1;
  transform: translateY(0);
}

.proy-idx-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.proy-idx-card__desc {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.proy-idx-card__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(249, 115, 22, 0.85);
  /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• ORANGE OVERLAY â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.proy-idx-card__inner:hover::after {
  opacity: 1;
}

.proy-idx-card__img {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 8px;
  object-fit: contain;
  z-index: 1;
  transition: transform 0.4s ease;
}

.proy-idx-card__action {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.proy-idx-card__inner:hover .proy-idx-card__action {
  opacity: 1;
  transform: translateY(0);
}

.proy-idx-card__btn {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 4px;
}

@media (max-width: 1000px) {
  .proy-idx-card {
    flex: 0 0 calc(100% / 2);
  }
}

@media (max-width: 600px) {
  .proy-idx-card {
    flex: 0 0 100%;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• FIN PROYECTOS INDEX CAROUSEL â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• FORMULARIO DE COTIZACIÃ“N â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cotizacion {
  position: relative;
  padding: 70px 0 80px;
  background-color: #F7F7F7;
}

.cotizacion .section-title {
  margin-bottom: 48px;
  color: #1a1a1a;
}

.cotizacion__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}

.cotizacion__promo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.cotizacion__promo-titulo {
  font-size: clamp(1.375rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0;
}

.cotizacion__promo-accent {
  color: #EB690B;
  /* Oscurecido para cumplir WCAG AA (5.2:1 sobre #F7F7F7) */
  font-style: normal;
}

.cotizacion__promo-desc {
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
}

.cotizacion__benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cotizacion__benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #EB690B;
  /* Oscurecido para cumplir WCAG AA */
}

.cotizacion__benefits-list li i {
  color: #EB690B;
  font-size: 1.1rem;
}

.cotizacion__form-wrap {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• CAMPOS DEL FORM â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cotizacion__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cotizacion__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cotizacion__field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2a2a2a;
}

.cotizacion__field input,
.cotizacion__field select,
.cotizacion__field textarea {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  padding: 5px 15px;
  font-size: 0.95rem;
  color: #1a1a1a;
  outline: none;
  transition: all 0.25s ease;
  font-family: inherit;
}

.cotizacion__field input:focus,
.cotizacion__field select:focus,
.cotizacion__field textarea:focus {
  border-color: #EB690B;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.cotizacion__field textarea {
  max-height: 90px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• BOTÃ“N ENVIAR â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cotizacion__btn {
  margin-top: 10px;
  width: 100%;
  padding: 16px;
  background: #EB690B;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cotizacion__btn:hover {
  background: #EB690B;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(235, 105, 11, 0.3);
}

.cotizacion__btn:active {
  transform: translateY(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 860px) {
  .cotizacion__inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .cotizacion {
    padding: 50px 0 60px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• FIN FORMULARIO COTIZACIÃ“N â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• POTENCIAMOS CRECIMIENTO CARDS OVERRIDES â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pot-card .c-card__img-wrap {
  height: 200px;

  width: 100%;
}

.pot-card .c-card__img {
  object-fit: contain;
}

.pot-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #EB690B;
  margin-top: 0;
  margin-bottom: 2px;
}

.pot-card__desc {
  font-weight: 400 !important;
  font-size: 0.85rem;

  line-height: 1.5;
  color: var(--gris);
}


@media (max-width: 900px) {
  .pot-grid__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pot-carousel .pot-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 600px) {
  .pot-grid__track {
    grid-template-columns: 1fr;
  }

  .pot-carousel .pot-card {
    flex-basis: 100%;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• NATIVE KEYFRAMES HERO INDEX â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@keyframes iFadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes iFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• SUBRAYADO DECORATIVO PARA SECCIONES â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.gallery-divider {
  width: 80px;
  height: 5px;
  background: #EB690B;
  margin: 16px auto 24px;
  border-radius: 4px;
}

#lineas-container .c-grid {
  gap: 24px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• ANCHO DE TARJETAS PARA LÃNEAS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#lineas-container .c-card {
  width: 100%;
}

#novedades .gallery-divider {
  display: block;
}

#novedades .section-title::after {
  display: block;
}