@charset "UTF-8";
@font-face {
  font-family: "Booton";
  src: url("fuentes/Booton-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Booton Regular";
  src: url("fuentes/Booton-Regular.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 90%;
}

.hidden {
  display: none;
  visibility: hidden;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 40px 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}
header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .container .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 131px;
}
header .container .logo a img {
  width: 100%;
}
header .container .navegacion ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  list-style: none;
}
header .container .navegacion ul li a {
  color: #fff;
  font-size: 18px;
  line-height: normal;
  text-decoration: none;
  font-family: "Booton Regular";
  font-weight: 400;
  position: relative;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Efecto hover para enlaces normales (Propósito, Marcas, Cultura, Novedades) */
header .container .navegacion ul li a.nav-link:hover {
  transform: translateY(-2px);
}

/* Efecto de línea inferior animada */
header .container .navegacion ul li a.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #f8e041;
  transition: width 0.3s ease;
}

header .container .navegacion ul li a.nav-link:hover::after {
  width: 80%;
}

/* Estado activo (cuando estás en esa sección) */
header .container .navegacion ul li a.nav-link.active {
  font-family: "Booton";
}

header .container .navegacion ul li a.nav-link.active::after {
  width: 80%;
}

header .container .navegacion ul li:last-child a {
  background-color: #f8e041;
  width: 170px;
  padding: 12px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  color: #01143a;
  font-family: "Booton";
  transition: all 0.3s ease;
}

header .container .navegacion ul li a.nav-link-contact:hover {
  background-color: #f8d41a;
  transform: translateY(-2px);
}

/* Estado activo para el botón Contacto */
header .container .navegacion ul li a.nav-link-contact.active {
  background-color: #f8d41a;
  font-weight: bold;
  transform: translateY(-2px);
}

header .container .navegacion ul li a.nav-link-contact:active {
  transform: translateY(0);
}

header.scroll {
  background-color: #01143a;
  padding: 20px 0;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.39);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.39);
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


section.hero .text-fade-in {
  animation: fadeInText 0.8s ease-out forwards;
}
  
section.hero  .text-fade-out {
    opacity: 0;
}

/* ===============================
   SECCIÓN 1: SOBRE NOSOTROS
================================== */
section.sobre-nosotros {
  background-color: #f3f1e5;
  padding: 80px 0 0 0;
}

section.sobre-nosotros .contenido-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Columna Texto (Izquierda) */
section.sobre-nosotros .columna-texto h2 {
  color: #01143a;
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-family: "Booton Regular";
  font-weight: 400;
}

section.sobre-nosotros .columna-texto p {
  color: #01143a;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-family: "Booton Regular";
  font-weight: 400;
}

/* Columna Imagen (Derecha) */
section.sobre-nosotros .columna-imagen {
  position: relative;
}

section.sobre-nosotros .columna-imagen img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* ===============================
   SECCIÓN 1: SOBRE NOSOTROS (Solo texto)
================================== */
section.sobre-nosotros {
  background-color: #f3f1e5;
  padding: 80px 0;
}

section.sobre-nosotros .grid-texto {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 60px;
}

/* Columna Título (Izquierda) */
section.sobre-nosotros .columna-titulo h2 {
  color: #01143a;
  font-size: 42px;
  line-height: 1.2;
  margin: 0;
  font-family: "Booton Regular";
  font-weight: 400;
}

/* Columna Descripción (Derecha) */
section.sobre-nosotros .columna-descripcion p {
  color: #01143a;
  font-size: 16px;
  line-height: normal;
  margin: 0;
  font-family: "Booton Regular";
  font-weight: 400;
  max-width: 514px;
}

/* ===============================
   SECCIÓN 2: BANNER PROPÓSITO
   (Igual que el banner "Próximamente" que ya tienes)
================================== */
section.banner-proposito {
  background-color: #f3f1e5;
  padding: 0 0 80px 0;
}

section.banner-proposito .container {
  max-width: 1440px;
  margin: 0 auto;
  width: 90%;
}

section.banner-proposito .content {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
}

/* Imagen de fondo del banner */
section.banner-proposito .fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

section.banner-proposito .fondo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card azul dentro del banner */
section.banner-proposito .info {
  position: relative;
  z-index: 2;
  background-color: #1E99F2;
  padding: 40px;
  border-radius: 8px;
  max-width: 450px;
  margin-left: 40px;
  margin-top: 80px;
  margin-bottom: 20px;
}

section.banner-proposito .info .line {
  height: 1px;
  width: 100%;
  background-color: #01143A;
  margin-bottom: 20px;
}

section.banner-proposito .info span.title {
  color: #01143A;
  font-size: 32px;
  line-height: normal;
  margin: 15px 0 16px 0;
  font-family: "Booton Regular";
  margin-bottom: 10px;
}

section.banner-proposito .info p {
  color: #01143A;
  font-size: 18px;
  line-height: normal;
  margin: 0;
  font-family: "Booton Regular";
  font-weight: 400;
  margin-top: 10px;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
  section.sobre-nosotros {
    padding: 60px 0;
  }
  
  section.sobre-nosotros .grid-texto {
    gap: 40px;
  }
  
  section.sobre-nosotros .columna-titulo h2 {
    font-size: 36px;
  }
  
  section.sobre-nosotros .columna-descripcion p {
    font-size: 16px;
  }
  
  section.banner-proposito {
    padding: 0 0 60px 0;
  }
  
  section.banner-proposito .content {
    min-height: 350px;
  }

  section.banner-proposito .info {
    padding: 35px;
    max-width: 400px;
    margin-left: 30px;
  }
  
  section.banner-proposito .info span.title {
    font-size: 28px;
  }
  
  section.banner-proposito .info p {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 500px) {
  section.sobre-nosotros {
    padding: 50px 0;
  }
  
  section.sobre-nosotros .grid-texto {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  section.sobre-nosotros .columna-titulo h2 {
    font-size: 28px;
    text-align: center;
  }
  
  section.sobre-nosotros .columna-descripcion p {
    font-size: 16px;
    text-align: center;
  }
  
  section.banner-proposito {
    padding: 0 0 50px 0;
  }
  
  section.banner-proposito .content {
    min-height: 500px;
    align-items: flex-end;
  }

  section.banner-proposito .fondo img {
    object-position: top;
  }
  
  section.banner-proposito .info {
    padding: 24px;
    max-width: 100%;
    margin: 0 20px 20px 20px;
  }
  
  section.banner-proposito .info span.title {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 0px;
  }
  
  section.banner-proposito .info p {
    font-size: 14px;
  }
}

section.hero .contentSlider {
  height: 650px;
  width: 100%;
}

section.hero .swiper-wrapper {
  height: 100%;
}

section.hero .swiper-slide {
  height: 100%;
}

/* ===================================
   ESTILOS PARA VIDEO EN HERO
==================================== */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-slide .fondo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Capa oscura sobre el video */
.video-slide .fondo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 0.4 = 40% de opacidad */
  z-index: 2;
  pointer-events: none; /* Para que los clicks pasen a través */
}

/* Asegurar que el texto esté por encima de la capa oscura */
.video-slide .container.hero-text {
  position: relative;
  z-index: 3;
}

/* Asegurar que el video no se vea pixelado */
.hero-video {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

section.hero .contentSlider .item {
  position: relative;
  overflow: hidden;
  height: 100%;
}

section.hero .contentSlider .item .fondo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

section.hero .contentSlider .item .fondo img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

section.hero .contentSlider .item .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: start !important;
  
  margin-top: 120px !important;
}

@media (min-width: 768px) {
  section.hero .contentSlider .item .container {
    align-items: center !important;

    margin-top: 0 !important;
  }
}

section.hero .contentSlider .item p {
  color: #fff;
  font-size: 22px !important;
  line-height: normal;
  max-width: 585px;
  font-family: "Booton Regular";
  font-weight: 400;
}

section.hero .contentSlider .item p.mobile {
  display: none;
  visibility: hidden;
}

section.hero .contentSlider .item p.desktop {
  display: block;
  visibility: visible;
}

@media (min-width: 768px) {
  section.hero .contentSlider .item p {
    font-size: 32px !important;
  }
}

/* Estilos para la paginación de Swiper */
section.hero .swiper-pagination {
  bottom: 60px !important;
  left: 5% !important;
  width: auto !important;
  text-align: left;
  padding-left: 0;
  transform: none;
}

section.hero .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 20px;
  background-color: #fff;
  opacity: 1;
  transition: 0.2s linear;
}

section.hero .swiper-pagination-bullet-active {
  width: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

section.hero .swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* ========================================
    SLIDER HERO - SLIDE CON FADE PURO
  ======================================== */

section.hero .swiper-slide {
    overflow: hidden;
}

section.hero .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

section.hero .swiper-slide-active img {
    opacity: 1;
}

/* Slides anteriores/siguientes permanecen invisibles */
section.hero .swiper-slide:not(.swiper-slide-active) img {
    opacity: 0;
}



section.comprometidos h2 {
  color: #fff;
  font-size: 42px;
  line-height: normal;
  text-align: center;
  font-family: "Booton Regular";
  font-weight: 400;
}
section.comprometidos p {
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
  line-height: normal;
  text-align: center;
  font-family: "Booton Regular";
  font-weight: 400;
}

section.marcas {
  padding: 64px 0;
  background-color: #01143a;
  padding-bottom: 130px;
}
section.marcas .content {
  max-width: 994px;
  margin: 0 auto;
}
section.marcas h2 {
  color: #fff;
  font-size: 42px;
  line-height: normal;
  text-align: center;
  font-family: "Booton Regular";
  font-weight: 400;
}
section.marcas p {
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
  line-height: normal;
  text-align: center;
  font-family: "Booton Regular";
  font-weight: 400;
}
section.marcas .flechasStyle {
  overflow: hidden;
  height: 0;
  margin: 0;
}
section.marcas .flechasStyle.active {
  height: auto;
  overflow: initial;
  margin-bottom: 30px;
}
section.marcas .slick-slide {
  margin: 0 13px;
}
section.marcas .item {
  width: 100%;
  cursor: pointer;
}
section.marcas .item img {
  width: 100%;
}
section.marcas .buttons {
  margin-top: 60px;
  margin-bottom: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
section.marcas .buttons button {
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  line-height: normal;
  width: 108px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  background-color: transparent;
  border: 1px solid #f3f1e5;
  cursor: pointer;
  font-family: "Booton Regular";
  font-weight: 400;
}
section.marcas .buttons button.active {
  background-color: #f3f1e5;
  color: #01143a;
  font-family: "Booton";
}

section.cultura {
  background-color: #f3f1e5;
  padding: 55px 0 0 0;
}
section.cultura h2 {
  color: #01143a;
  font-size: 42px;
  line-height: normal;
  margin-bottom: 28px;
  text-align: center;
  font-family: "Booton Regular";
  font-weight: 400;
}
section.cultura img.crece {
  max-width: 422px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 28px;
}
section.cultura p {
  color: #01143a;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  font-family: "Booton Regular";
  font-weight: 400;
}
section.cultura .container {
  padding-bottom: 139px;
  border-bottom: 1.5px solid #01143a;
}
section.cultura .sliderCultura {
  margin-top: 44px;
}
section.cultura .sliderCultura .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
section.cultura .sliderCultura .item {
  padding: 27px 23px 30px 23px;
  background-color: #f8614a;
  border-radius: 10px;
  height: 100%;
}
section.cultura .sliderCultura .item .contentUno {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 19px;
  border-top: 1.5px solid #01143a;
  padding-top: 22px;
}
section.cultura .sliderCultura .item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.cultura .sliderCultura .item .text h3 {
  color: #01143a;
  font-size: 24px;
  line-height: normal;
  margin-bottom: 15px;
  text-align: start;
  font-family: "Booton";
}
section.cultura .sliderCultura .item .text p {
  text-align: start;
  color: #01143a;
  font-size: 14px;
  line-height: normal;
  font-family: "Booton Regular";
  font-weight: 400;
}
section.cultura .sliderCultura .slick-slide {
  margin: 0 13px;
  height: auto;
}
section.cultura .sliderCultura .slick-slide > div {
  height: 100%;
}

section.novedades {
  background-color: #f3f1e5;
  padding: 60px 0 0 0;
}
section.novedades h2 {
  color: #01143a;
  font-size: 42px;
  line-height: normal;
  margin-bottom: 28px;
  text-align: center;
  font-family: "Booton Regular";
  font-weight: 400;
}
section.novedades p {
  color: #01143a;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  font-family: "Booton Regular";
  font-weight: 400;
}
section.novedades .content {
  max-width: 994px;
  margin: 0 auto;
}
section.novedades .container {
  padding-bottom: 157px;
  border-bottom: 1.5px solid #01143a;
}
section.novedades .sliderComunidad {
  padding-top: 40px;
}
section.novedades .sliderComunidad .slick-slide {
  margin: 0 14px;
}
section.novedades .sliderComunidad .item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 25px;
  align-items: stretch;
}
section.novedades .sliderComunidad .item .part1 {
  width: 220px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
  display: flex;
}
section.novedades .sliderComunidad .item .part1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.novedades .sliderComunidad .item .part2 {
  padding: 10px 0;
}
section.novedades .sliderComunidad .item .part2 .fecha {
  color: #011239;
  font-size: 16px;
  line-height: normal;
  font-family: "Booton Regular";
  font-weight: 400;
  display: block;
  margin-bottom: 14px;
}
section.novedades .sliderComunidad .item .part2 .info {
  border-top: 1px solid #011239;
  border-bottom: 1px solid #011239;
  padding: 13px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}
section.novedades .sliderComunidad .item .part2 .info h3 {
  color: #011239;
  font-size: 28px;
  line-height: normal;
  font-family: "Booton";
}
section.novedades .sliderComunidad .item .part2 .info a {
  padding: 11px 0;
  width: 170px;
  color: #011239;
  font-size: 16px;
  line-height: normal;
  font-family: "Booton";
  background-color: #2fc253;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  border-radius: 5px;
  
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

/* Capa verde oscura que se desliza de izquierda a derecha */
section.novedades .item .info a::before,
.sliderComunidad .item .info a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #1c9743; /* Verde más oscuro */
    z-index: -1;
    transition: width 0.4s ease;
}

/* Al hacer hover, la capa se expande de izquierda a derecha */
section.novedades .item .info a:hover::before,
.sliderComunidad .item .info a:hover::before {
    width: 100%;
}

/* El texto se mantiene blanco */
section.novedades .item .info a:hover,
.sliderComunidad .item .info a:hover {
    color: #fff !important;
}

section.banner {
  background-color: #f3f1e5;
  padding: 60px 0 0 0;
}
section.banner .container {
  padding-bottom: 60px;
  border-bottom: 1.5px solid #01143a;
}
section.banner .container .content {
  border-radius: 10px;
  overflow: hidden;
  height: 500px;
  position: relative;
  padding: 37px 55px;
}
section.banner .container .content .fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
section.banner .container .content .fondo img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.banner .container .content .info {
  position: relative;
  z-index: 2;
  background-color: #1e99f2;
  border-radius: 10px;
  padding: 50px 32px 50px 32px;
  max-width: 376px;
  min-height: 300px;
  margin-top: 100px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.banner .container .content .info span {
  color: #01143a;
  font-size: 16px;
  line-height: normal;
  font-family: "Booton Regular";
  font-weight: 400;
  text-transform: uppercase;
  display: block;
}
section.banner .container .content .info span.title {
  color: #01143a;
  font-size: 32px;
  line-height: normal;
  font-family: "Booton Regular";
  margin-top: 12px;
  text-transform: none;
}
section.banner .container .content .info p {
  margin-top: 12px;
  color: #01143a;
  font-size: 18px;
  line-height: normal;
  font-family: "Booton Regular";
  font-weight: 400;
  margin-top: 12px;
}

section.ayuda {
  background-color: #f3f1e5;
  padding: 60px 0 0 0;
  padding-bottom: 86px;
}


section.ayuda .title {
  max-width: 994px;
  margin: 0 auto;
}
section.ayuda .title h2 {
  color: #011239;
  font-size: 42px;
  line-height: normal;
  font-family: "Booton Regular";
  font-weight: 400;
  text-align: center;
}
section.ayuda .title p {
  color: #011239;
  font-size: 16px;
  line-height: normal;
  font-family: "Booton Regular";
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}
section.ayuda .cards {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 140px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
section.ayuda .cards::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #011239;
  width: 1.5px;
  height: 100%;
}
section.ayuda .cards .part1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
section.ayuda .cards .part1 .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 271px;
  width: 100%;
}
section.ayuda .cards .part1 .card .info h2 {
  color: #011239;
  font-size: 16px;
  line-height: normal;
  font-family: "Booton";
  font-weight: 400;
  margin-bottom: 7px;
}
section.ayuda .cards .part1 .card .info p {
  color: #011239;
  font-size: 16px;
  line-height: normal;
  font-family: "Booton Regular";
  font-weight: 400;
}
section.ayuda .cards .part1 .card .info p a {
  color: #011239;
  text-decoration: none;
}

/* Estilos para enlaces en las cards de ayuda */
section.ayuda .card a {
  color: #01143a;
  text-decoration: none;
  font-family: "Booton Regular";
  font-size: 16px;
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

/* Línea decorativa debajo del enlace */
section.ayuda .card a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f8614a;
  transition: width 0.8s ease;
}

/* Al hacer hover, la línea se expande */
section.ayuda .card a:hover {
  color: #f8614a;
}

section.ayuda .card a:hover::after {
  width: 100%;
}

section.ayuda .card a.with-border:hover {
  border-color: #f8614a;
  background-color: rgba(248, 97, 74, 0.05);
  color: #f8614a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 97, 74, 0.2);
}

/* Estilos específicos para enlaces de teléfono */
section.ayuda .card a[href^="tel:"] {
  font-family: "Booton Regular";
  font-size: 18px;
  font-weight: 400;
}

/* Estilos específicos para enlaces de email */
section.ayuda .card a[href^="mailto:"] {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

section.ayuda .card a[href^="mailto:"]::after {
  background:  #f8614a;
  height: 2.5px;
}

section.ayuda .linea-etica {
  color: #f8614a !important;
  font-weight: bold !important;
}

footer {
  background-color: #011239;
}
footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
}
footer .container .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .container .logo a img {
  width: 105px;
}
footer .container .creditos p {
  color: #fff;
  font-size: 16px;
  line-height: normal;
  font-family: "Booton Regular";
  font-weight: 400;
}
footer .container .redes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
footer .container .redes a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flechasStyle .slick-next,
.flechasStyle .slick-prev {
  left: initial;
  right: initial;
  left: calc(50% + 35px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -96px;
  top: initial;
  width: 40px;
  height: 40px;
  background-image: url(assets/icon_flecha.svg);
  background-size: 100%;
  background-repeat: repeat;
}
.flechasStyle .slick-next {
  -webkit-transform: translateX(-50%) scale(-1);
          transform: translateX(-50%) scale(-1);
}
.flechasStyle .slick-prev {
  left: calc(50% - 35px);
}
.flechasStyle .slick-next::before,
.flechasStyle .slick-prev::before {
  display: none;
}
.flechasStyle.blanco .slick-next,
.flechasStyle.blanco .slick-prev {
  -webkit-filter: invert(1);
          filter: invert(1);
}

body.scrollHidden {
  position: relative;
  overflow: hidden;
}

body.scrollHidden::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.4588235294);
}

.modalMarca {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1000;
  display: none;
}
.modalMarca.active {
  display: block;
}
.modalMarca .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modalMarca .container .close {
  cursor: pointer;
}
.modalMarca .content {
  max-width: 620px;
  border-radius: 10px;
  background-color: #f3f1e5;
  padding: 37px 35px;
  position: relative;
  margin: 0 auto;
}
.modalMarca .content::before {
  content: "";
  height: 1px;
  position: absolute;
  top: 37px;
  left: 35px;
  right: 35px;
  background-color: #01143a;
}
.modalMarca .content h3 {
  color: #01143a;
  font-size: 30px;
  line-height: normal;
  font-family: "Booton";
}
.modalMarca .content .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.modalMarca .content .portada {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  margin-top: 15px;
}
.modalMarca .content .portada img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modalMarca .content .descripcion {
  margin-top: 15px;
  color: #01143a;
  font-size: 16px;
  line-height: normal;
  font-family: "Booton Regular";
}
.modalMarca .content .redes,
.modalMarca .content .correos,
.modalMarca .content .telefono {
  margin-top: 25px;
}
.modalMarca .content .redes p.title2,
.modalMarca .content .correos p.title2,
.modalMarca .content .telefono p.title2 {
  color: #01143a;
  font-size: 16px;
  line-height: normal;
  font-family: "Booton";
  margin-bottom: 10px;
}
.modalMarca .content .redes {
  /* border-bottom: 1px solid #01143a; */
  padding-bottom: 15px;
}
.modalMarca .content .redes .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.modalMarca .content .redes .logos a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #01143A;

  transition: background-color 0.3s ease;
}

.modalMarca .content .redes .logos a:hover {
  background-color: #1e99f2;
}

.modalMarca .content .correos {
  border-bottom: 1px solid #01143a;
  padding-bottom: 15px;
}
.modalMarca .content .correos p.correo {
  color: #01143a;
  font-size: 16px;
  line-height: normal;
  font-family: "Booton Regular";
}

.modalMarca .content .correos p.correo a {
  color: inherit;
  text-decoration: none;
}

.modalMarca .content .correos p.correo a:hover {
  text-decoration: underline;
}

.modalMarca .content .telefono p.telefonos {
  color: #01143a;
  font-size: 16px;
  line-height: normal;
  font-family: "Booton Regular";
}

.modalMarca .content .telefono p.telefonos a {
  color: inherit;
  text-decoration: none;
}

.modalMarca .content .telefono p.telefonos a:hover {
  text-decoration: underline;
}

.modalMarca .content a.web {
  background-color: #01143a;
  padding: 11px 50px;
  font-family: "Booton";
  color: #f3f1e5;
  font-size: 16px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 33px;

  transition: background-color 0.3s ease;
}

.modalMarca .content a.web:hover {
  background-color: #1e99f2;
}

@media (min-width: 1600px) {
  section.hero .swiper-pagination {
    left: calc((100% - 1440px) / 2 + (1440px * 0.001)) !important;
  }
}

@media (max-width: 1400px) {
  section.hero .contentSlider .item p {
    max-width: 463px;
  }
  .container {
    max-width: 1200px;
  }
  /* Los dots siguen alineados al 5% del viewport */
  section.hero .swiper-pagination {
    left: 5% !important;
  }

  .flechasStyle .slick-next,
  .flechasStyle .slick-prev {
    bottom: -70px;
  }
  section.novedades .sliderComunidad .item .part2 .info h3 {
    font-size: 24px;
  }
  section.novedades .container {
    padding-bottom: 130px;
  }
}
@media (max-width: 1280px) {
  section.ayuda .cards::before {
    display: none;
  }
  section.ayuda .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  section.ayuda .cards .part1 .card {
    width: 50%;
  }
  section.ayuda .cards .part1 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 1106px) {
  header .container .navegacion ul {
    gap: 20px;
  }
  
  header .container .navegacion ul li a {
    font-size: 16px;
    padding: 6px 10px;
  }

  header .container .navegacion ul li a.nav-link::after {
    display: none;
  }
}

@media (max-width: 1024px) {
  section.hero .contentSlider .item p {
    font-size: 28px;
  }
  /* Ajustar paginación del hero en tablet */
  section.hero .swiper-pagination {
    left: 4.4% !important;
    bottom: 50px !important;
  }

  section.proposito h2,
  section.comprometidos h2,
  section.marcas h2,
  section.cultura h2,
  section.novedades h2,
  section.ayuda .title h2 {
    font-size: 32px;
  }
  section.proposito p,
  section.comprometidos p,
  section.marcas p,
  section.cultura .content > p,
  section.novedades p {
    font-size: 16px;
  }
  section.proposito,
  section.comprometidos,
  section.novedades {
    padding: 42px 0 0 0;
  }
  section.marcas {
    padding: 42px 0;
    padding-bottom: 80px;
  }
  section.proposito .container,
  section.comprometidos .container {
    padding-bottom: 40px;
  }
  section.marcas .buttons {
    margin-top: 40px;
    margin-bottom: 44px;
  }
  .container {
    width: 91.2%;
  }
  section.marcas {
    overflow: hidden;
  }
  .sliderMarcasPerro .slick-list,
  .sliderMarcasGato .slick-list {
    overflow: initial;
  }

  header {
    padding: 30px 0;
  }
  section.cultura .sliderCultura .slick-slide {
    margin: 0 10px;
  }
  section.cultura .container {
    padding-bottom: 124px;
  }
  section.novedades .sliderComunidad .item .part2 .fecha {
    font-size: 12px;
  }
  section.novedades .sliderComunidad .item .part2 .info h3 {
    font-size: 16px;
  }
  section.novedades .sliderComunidad .item .part1 {
    width: 166px;
    height: 100%;
    display: flex;
  }
  section.novedades .sliderComunidad .item .part2 .info a {
    font-size: 14px;
    width: 90px;
  }
  section.novedades .sliderComunidad .item {
    gap: 20px;
  }
  section.novedades .sliderComunidad .slick-slide {
    margin: 0 10px;
  }
  footer .container {
    padding: 25px 0;
  }
  section.ayuda {
    padding: 40px 0 0 0;
    padding-bottom: 50px;
  }
  section.banner .container {
    padding-bottom: 35px;
  }
  section.banner .container .content {
    height: 386px;
    padding: 37px 55px;
  }
  section.banner .container .content .info span.title {
    font-size: 28px;
  }
  section.banner .container .content .info {
    width: 256px;
    padding: 32px 32px 32px 32px;
    margin-top: 0;
  }
  section.banner .container .content {
    padding: 37px 40px;
  }
  section.banner {
    padding: 30px 0 0 0;
  }
  footer .container .creditos {
    max-width: 289px;
    text-align: center;
  }
}
@media (max-width: 1050px) {
  header .container .navegacion ul li {
    display: none;
  }
  header .container .navegacion ul li:last-child {
    display: block;
  }
}

@media (max-width: 1400px) {
  section.hero .contentSlider .item p.desktop {
    display: none;
    visibility: hidden;
  }

  section.hero .contentSlider .item p.mobile {
    display: block;
    visibility: visible;
  }
}

@media (max-width: 700px) {
  section.novedades .sliderComunidad .item .part2 {
    width: 100%;
  }
  section.ayuda .cards .part1 {
    gap: 30px;
  }
}
@media (max-width: 637px) {
  section.ayuda .cards .part1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  section.ayuda .cards .part1 .card {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 500px) {
  /* Centrar paginación del hero en mobile */
  section.hero .swiper-pagination {
    text-align: center !important;
    padding-left: 0 !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
    bottom: 40px !important;
  }

  section.proposito h2,
  section.comprometidos h2,
  section.marcas h2,
  section.cultura h2,
  section.novedades h2,
  section.ayuda .title h2 {
    font-size: 28px;
  }
  section.proposito p,
  section.comprometidos p,
  section.marcas p,
  section.cultura .content > p,
  section.novedades p {
    font-size: 16px;
  }
  section.proposito,
  section.comprometidos,
  section.cultura,
  section.novedades {
    padding: 40px 0 0 0;
  }
  section.marcas {
    padding: 40px 0;
    padding-bottom: 80px;
  }
  .container {
    width: 89%;
  }
  section.marcas .slick-slide {
    margin: 0 7.5px;
  }
  .containerSlider {
    width: 92%;
  }
  section.cultura .sliderCultura {
    margin-top: 20px;
  }
  section.cultura .container {
    padding-bottom: 103px;
  }
  section.novedades .sliderComunidad .item .part1 {
    width: 45%;
    height: 100%;
    display: flex;
  }
  section.novedades .sliderComunidad .item .part2 {
    width: 55%;
  }
  section.novedades .sliderComunidad .item .part2 {
    padding: 0;
  }
  section.novedades .container {
    padding-bottom: 99px;
  }
  section.banner .container .content {
    padding: 0;
    background-color: #1e99f2;
  }
  section.banner .container .content {
    padding-top: 280px;
    overflow: visible;
    height: auto;
  }
  section.banner .container .content .fondo {
    height: 300px;
    border-radius: 10px;
    overflow: visible;
    padding: 15px;
  }

  section.banner .container .content .fondo img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
  }

  section.banner .container .content .info {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 32px 24px;
    min-height: auto;
    border-radius: 0px 0px 10px 10px;
  }
  section.ayuda {
    padding: 30px 0;
  }
  footer .container .logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  footer .container .redes {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  footer .container .creditos {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  footer .container .creditos {
    max-width: 100%;
    padding-top: 20px;
    border-top: 1px solid #f0eedc;
  }
  header .container .logo a {
    width: 105px;
  }
  header .container .navegacion ul li:last-child a {
    font-size: 14px;
    width: 113px;
  }
}
body.interna header {
  background-color: #01143a;
  padding: 15px 0;
}

section.articulo {
  padding-top: 100px;
  padding-bottom: 70px;
  background-color: #f3f1e5;
}
section.articulo h1 {
  color: #011239;
  font-size: 32px;
  line-height: normal;
  font-family: "Booton";
  margin-top: 54px;
}
section.articulo p,
section.articulo li {
  padding-top: 24px;
  color: #011239;
  font-size: 16px;
  line-height: 24px;
  font-family: "Booton Regular";
}

section.articulo b,
section.articulo strong {
  font-family: "Booton";
  font-weight: 400;
}

section.articulo ul {
  padding-top: 20px;
  padding-left: 20px;
}
section.articulo li {
  padding-top: 0;
}
section.articulo .separador {
  width: 100%;
  height: 1px;
  background-color: #011239;
  margin-top: 20px;
  margin-bottom: 20px;
}
section.articulo h2 {
  color: #011239;
  font-size: 28px;
  line-height: normal;
  font-family: "Booton Regular";
  font-weight: 400;
}
section.articulo .slug {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
section.articulo .slug p {
  padding-top: 0;
}

section.articulo .slug a {
  text-decoration: none;
  color: #01143A;
}

section.articulo a.download {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: 'Booton';
  color: #000 !important;
  text-decoration: none !important;
  background-color: #F8614A;

  padding: 15px;
  margin-top: 20px;
  border-radius: 10px;
}

section.articulo a.download img {
  padding-left: 10px;
}

section.articulo p a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 1440px) {
  .modalMarca .content .portada {
    height: 180px;
  }
  .modalMarca .content {
    max-width: 563px;
    height: 600px;
    overflow: hidden;
    overflow-y: scroll;
    padding: 37px 30px;
  }
  .modalMarca .content ::-webkit-scrollbar {
    width: 5px;
  }
  .modalMarca .content ::-webkit-scrollbar-track {
    background: transparent;
  }
  .modalMarca .content ::-webkit-scrollbar-thumb {
    background-color: #011239;
    border-radius: 10px;
  }
  /* ===== Scrollbar para Firefox ===== */
  .modalMarca .content {
    scrollbar-width: thin; /* thin ≈ 5px */
    scrollbar-color: #011239 transparent;
  }
}

@media (max-width: 1024px) {
  section.articulo h2 {
    font-size: 24px;
  }
  section.articulo h1 {
    font-size: 28px;
  }
  .modalMarca .content h3 {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  section.articulo h2 {
    font-size: 22px;
  }
  section.articulo h1 {
    font-size: 24px;
    margin-top: 40px;
  }
}

/* ================
  ACORDEON 
  ================= */
.accordion-container {
  margin-top: 40px;
}

.accordion-item {
  border: 1.5px solid #011239;
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

.accordion-item_2 {
  background-color: transparent !important;
  border: none !important;
}

.accordion-item:hover {
  box-shadow: 0 2px 8px rgba(1, 18, 57, 0.1);
}

.accordion-item:hover.accordion-item_2 {
  box-shadow: none;
}

.accordion-header {
  width: 100%;
  padding: 15px 25px;
  background-color: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Booton";
  font-size: 18px;
  color: #011239;
  text-align: left;
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-item_2 .accordion-header {
  padding: 10px 0;
}


.accordion-header:hover {
  background-color: rgba(1, 18, 57, 0.02);
}

.accordion-item_2 .accordion-header:hover {
  background-color: transparent !important;
}


.accordion-header span:first-child {
  flex: 1;
  padding-right: 20px;
}

.accordion-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Contenedor del ícono animado */
.icon-plus-minus {
  width: 20px;
  height: 20px;
  position: relative;
  display: block;
}

/* Línea horizontal (siempre visible) */
.icon-plus-minus::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 2.5px;
  background-color: #25B6FF;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Línea vertical (desaparece cuando está activo) */
.icon-plus-minus::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 100%;
  background-color: #25B6FF;
  transform: translate(-50%, -50%) scaleY(1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Estado activo: la línea vertical desaparece */
.accordion-item.active .icon-plus-minus::after {
  transform: translate(-50%, -50%) scaleY(0);
}

/* Efecto hover: cambiar color */
.accordion-header:hover .icon-plus-minus::before,
.accordion-header:hover .icon-plus-minus::after {
  background-color: #25B6FF;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
}

.accordion-item_2 .accordion-content {
  padding: 0 !important;
}

.accordion-item.active .accordion-content {
  padding: 0 25px 15px 25px;
}

.accordion-content p,
.accordion-content li {
  padding-top: 0;
  margin-top: 0;
}

.accordion-content p:first-child {
  margin-top: 0;
  padding-top: 5px;
}

.accordion-content ul {
  padding-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .accordion-header {
    font-size: 16px;
    padding: 18px 20px;
  }
  
  .accordion-icon {
    font-size: 22px;
  }
}

@media (max-width: 500px) {
  .accordion-header {
    font-size: 14px;
    padding: 15px 18px;
  }
  
  .accordion-icon {
    font-size: 20px;
    width: 25px;
    height: 25px;
  }
  
  .accordion-content {
    padding: 0 18px;
  }
  
  .accordion-item.active .accordion-content {
    padding: 0 18px 20px 18px;
  }
}

/* =============
  FLECHA ARRIBA
============= */
/* Botón Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #F8614A;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  z-index: 800;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.back-to-top:hover {
  background-color: #d45541;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
  transform: scale(0.95);
}

.back-to-top svg {
  width: 26px;
  height: 26px;
  color: #01143A;
}

/* Responsive */
@media (max-width: 1024px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 80px;
    right: 25px;
  }
  
  .back-to-top svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 500px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 70px;
    right: 20px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* =============
  ANIMACIONES PARA SCROLL
================*/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Variantes de animación */
.animate-off-scroll {
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-off-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-zoom.animated {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1179px) {
  /* Animaciones MÁS SUAVES en mobile */
  .animate-on-scroll,
  .animate-off-scroll,
  .animate-fade-left,
  .animate-fade-right,
  .animate-zoom {
    opacity: 0.3 !important; /* Empieza semi-visible en lugar de invisible */
    transform: translateY(20px) !important; /* Menos desplazamiento */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out !important; /* Más rápido */
  }
  
  .animate-on-scroll.animated,
  .animate-off-scroll.animated,
  .animate-fade-left.animated,
  .animate-fade-right.animated,
  .animate-zoom.animated {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========================================
   HOVERS SUTILES - BRILLO MÁS VISIBLE
   ======================================== */
.sliderMarcasPerro .item,
.sliderMarcasGato .item {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sliderMarcasPerro .item::after,
.sliderMarcasGato .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sliderMarcasPerro .item:hover::after,
.sliderMarcasGato .item:hover::after {
    opacity: 0;
}

/* TABS - Fondo más claro */
.buttons button {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttons button:not(.active):hover {
    background-color: rgba(248, 224, 65, 0.1) !important; /* Tinte amarillo suave */
}

/* FLECHAS - Amarillo */
.slick-prev,
.slick-next {
  transition: 0.5s ease;
}

.slick-prev:hover {
    transform: translateX(-50%) scale(1.1) !important;
}

.slick-next:hover {
    transform: translateX(-50%) scale(-1.1) !important;
}
