/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* GALERIA DE REELS */
/* LAYOUT */
.split-layout {
  display: flex;
  height: 100vh;
}

/* IZQUIERDA */
.left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding-left: 40px;
}

/* DERECHA */
.right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

/* ===== CARRUSEL ===== */
.carousel {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;

  /*FIX DEL CORTE */
  transform: translateX(40px);
}

.card {
  position: absolute;
  width: 220px;
  height: 390px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.7s ease, opacity 0.7s ease, filter 0.7s ease;
  cursor: pointer;
  filter: blur(3px);
  opacity: 0.4;
}

.card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* POSICIONES */
.card.active {
  transform: translateX(0) scale(1.1);
  opacity: 1;
  filter: blur(0);
  z-index: 3;
}

.card.left {
  transform: translateX(-240px) rotateY(25deg) scale(0.9);
}

.card.right {
  transform: translateX(240px) rotateY(-25deg) scale(0.9);
}

.card.hidden-left {
  transform: translateX(-400px) scale(0.7);
  opacity: 0;
}

.card.hidden-right {
  transform: translateX(400px) scale(0.7);
  opacity: 0;
}

/* ===== TEXTO ===== */

.hero-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.text-block {
  display: inline-block;
}

/* LINEA 1 */
.line1 {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* LINEA 2 */
.line2 {
  font-size: 65px;
  font-weight: 600;
  letter-spacing: 2px;

  display: flex;
  align-items: baseline;
  gap: 12px;
}

/* CONTENEDOR DINÁMICO */
.highlight-wrapper {
  display: inline-block;
}

/* PALABRA */
.highlight {
  color: #b34926;
  display: inline-block;
  white-space: nowrap;
}

/* ANIMACIÓN */
.word-enter {
  animation: wordBounce 0.6s ease;
}

@keyframes wordBounce {
  0% {
    transform: translateY(25px);
    opacity: 0;
    filter: blur(6px);
  }
  60% {
    transform: translateY(-8px);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-text {
    align-items: center;
    text-align: center;
  }

  .line1 {
    font-size: 40px;
  }

  .line2 {
    font-size: 28px;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .line1 {
    font-size: 32px;
  }

  .line2 {
    font-size: 22px;
    flex-direction: column;
    gap: 5px;
  }
}




/* ===== BOTONES ===== */
.buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.cta {
  padding: 12px 22px;
  border: 2px solid #b34926;
  color: #b34926;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.cta:hover {
  background: #b34926;
  color: white;
}

.cta.secondary {
  border-color: #ede2cc;
  color: #ede2cc;
}

.cta.secondary:hover {
  background: #25D366;
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .split-layout {
    flex-direction: column;
    height: auto;
  }

  .left, .right {
    width: 100%;
  }

  .right {
    text-align: center;
    padding: 40px 20px;
  }

  .hero-text {
    align-items: center;
  }

  .line1 {
    font-size: 42px;
  }

  .line2 {
    font-size: 32px;
  }

  .carousel {
    height: 420px;
    transform: none;
  }
}
@media (max-width: 900px) {
  .hero-text {
    align-items: center;
    text-align: center;
  }

  .line1 {
    font-size: 40px;
  }

  .line2 {
    font-size: 28px;
    justify-content: center;
  }

  .highlight-wrapper {
    width: 180px;
  }
}

@media (max-width: 500px) {
  .line1 {
    font-size: 32px;
  }

  .line2 {
    font-size: 22px;
    flex-direction: column;
    gap: 5px;
  }

  .highlight-wrapper {
    width: 100%;
    text-align: center;
  }

  .highlight {
    text-align: center;
  }
}











