/**
 * CC COROS Hero Slider Stylesheet
 * Version: 1.0.9
 * Author: Carlos Cancino
 * Premium responsive styles matching the official COROS global design.
 *

/* ==========================================================================
   1. Base & Reset Aislado (Divi Compatibility & Custom Protect)
   ========================================================================== */
.cc-coros-hero,
.cc-coros-hero * {
  box-sizing: border-box;
}

/* Variables globales e tipografías oficiales */
.cc-coros-hero {
  --wp-admin-bar-height: 0px;
  --cc-coros-header-offset: 50px;
  --cc-coros-header-offset-mobile: 64px;
  --cc-coros-font-title: "DIN Condensed Bold", "DIN Condensed", "DINCOROS-Bold", sans-serif;
  --cc-coros-font-text: "Helvetica Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Detect WordPress Admin Bar inside isolated plugin scope */
body.admin-bar .cc-coros-hero {
  --wp-admin-bar-height: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .cc-coros-hero {
    --wp-admin-bar-height: 46px;
  }
}

/* Evitar márgenes/rellenos heredados e interferencia con temas */
.cc-coros-hero button,
.cc-coros-hero a,
.cc-coros-hero video,
.cc-coros-hero img {
  margin: 0;
  padding: 0;
  border: none;
  font-family: inherit;
}

.cc-coros-hero a,
.cc-coros-hero a:hover,
.cc-coros-hero a:focus,
.cc-coros-hero a:visited {
  text-decoration: none;
  color: #fff;
  outline: none;
}

.cc-coros-hero button {
  background: transparent;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

/* Protección para módulos de Divi */
.et_pb_module .cc-coros-hero,
.et_pb_code_inner .cc-coros-hero {
  width: 100%;
  max-width: none;
}

/* Divi Full-Width Compatibility with :has() */
.et_pb_section:has(.cc-coros-hero),
.et_pb_row:has(.cc-coros-hero),
.et_pb_column:has(.cc-coros-hero),
.et_pb_module:has(.cc-coros-hero),
.et_pb_code_inner:has(.cc-coros-hero) {
  width: 100%;
  max-width: none;
}

/* Fallback documentado .cc-coros-hero-section y descendientes */
.cc-coros-hero-section,
.cc-coros-hero-section .et_pb_row,
.cc-coros-hero-section .et_pb_column,
.cc-coros-hero-section .et_pb_module,
.cc-coros-hero-section .et_pb_code_inner {
  width: 100% !important;
  max-width: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ==========================================================================
   2. Breakpoints & Visibilidad Principal
   ========================================================================== */
@media (max-width: 859px) {
  .cc-coros-hero-pc {
    display: none !important;
  }
  .cc-coros-hero-mobile {
    display: block !important;
  }
}

@media (min-width: 860px) {
  .cc-coros-hero-pc {
    display: block !important;
  }
  .cc-coros-hero-mobile {
    display: none !important;
  }
}

/* ==========================================================================
   3. Estilos PC / Tablet (cc-coros-hero-pc)
   ========================================================================== */
.cc-coros-hero-pc {
  position: relative;
  width: 100%;
  height: 100dvh !important;
  min-height: 100dvh !important;
  max-height: none !important;
  overflow: hidden;
  background: #000;
}

body.admin-bar .cc-coros-hero-pc {
  height: calc(100dvh - 32px) !important;
  min-height: calc(100dvh - 32px) !important;
}

.cc-coros-hero__container,
.cc-coros-hero-mobile__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.cc-coros-hero__track,
.cc-coros-hero-mobile__track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slides */
.cc-coros-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cc-coros-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Media (Video & Images) Cover with scale guard and no filters */
.cc-coros-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.cc-coros-hero-pc .cc-coros-hero__media,
.cc-coros-hero-pc .cc-coros-hero__media video,
.cc-coros-hero-pc .cc-coros-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: none !important;
  transform: scale(1.001) !important;
}

/* Máscara de Contraste Premium v1.0.4 (Radial + Linear combined) */
.cc-coros-hero__mask,
.cc-coros-hero-mobile__mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.cc-coros-hero-pc .cc-coros-hero__mask {
  background: 
    radial-gradient(circle at 50% 72%, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0) 100%) !important;
  background-image: 
    radial-gradient(circle at 50% 72%, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.50) 100%) !important;
}

/* Contenido PC */
.cc-coros-hero-pc .cc-coros-hero__content {
  position: absolute;
  left: 50%;
  bottom: clamp(90px, 13vh, 150px);
  transform: translateX(-50%);
  z-index: 3;
  width: min(92%, 1080px);
  text-align: center;
  color: #fff;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
}

/* Tipografía PC Premium (DIN Condensed para títulos, Helvetica para descripción) */
.cc-coros-hero-pc .cc-coros-hero__title {
  margin: 0 0 6px 0;
  font-family: var(--cc-coros-font-title);
  font-size: clamp(76px, 7vw, 128px);
  line-height: 0.86;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #ffffff !important;
  opacity: 1 !important;
}

.cc-coros-hero-pc .cc-coros-hero__subtitle {
  margin: 10px 0 24px;
  font-family: var(--cc-coros-font-title);
  font-size: clamp(38px, 3.2vw, 62px);
  line-height: 0.86;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #ffffff !important;
  opacity: 1 !important;
}

.cc-coros-hero-pc .cc-coros-hero__description {
  margin: 0 auto;
  max-width: 800px;
  font-family: var(--cc-coros-font-text);
  font-size: clamp(18px, 1.35vw, 28px);
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-weight: 400;
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Balance de slides sin subtítulo */
.cc-coros-hero-pc .cc-coros-hero__content--simple .cc-coros-hero__title {
  margin-bottom: 24px;
}

/* ==========================================================================
   4. Botones Custom (top-slide-actions)
   ========================================================================== */
.cc-coros-hero .top-slide-actions,
.cc-coros-hero__actions {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.cc-coros-hero .custom-btn,
.cc-coros-hero__button {
  min-width: 154px;
  height: 40px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: #ffffff !important;
  text-transform: uppercase;
  font-family: var(--cc-coros-font-text);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
              color 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.05em;
}

.cc-coros-hero .custom-btn span,
.cc-coros-hero__button span {
  display: inline-block;
}

.cc-coros-hero .custom-btn:hover,
.cc-coros-hero .custom-btn:focus,
.cc-coros-hero__button:hover,
.cc-coros-hero__button:focus {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

/* Block style button on second actions if applicable */
.cc-coros-hero .custom-btn.block,
.cc-coros-hero__button.block {
  /* Class signature block preserved */
}

/* ==========================================================================
   5. Navegación PC Flechas Premium (top-slide-nav)
   ========================================================================== */
.cc-coros-hero .top-slide-nav,
.cc-coros-hero__nav {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

.cc-coros-hero .top-slide-nav-btn,
.cc-coros-hero__nav-btn {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(0, 0, 0, 0.34) !important;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 0.95;
  box-shadow: none !important;
  outline: none;
  padding: 0;
  transition: background 0.22s ease, opacity 0.22s ease;
}

.cc-coros-hero .top-slide-nav-btn.prev,
.cc-coros-hero__nav-btn--prev {
  left: clamp(52px, 5vw, 90px);
}

.cc-coros-hero .top-slide-nav-btn.next,
.cc-coros-hero__nav-btn--next {
  right: clamp(52px, 5vw, 90px);
}

.cc-coros-hero .top-slide-nav-btn:hover,
.cc-coros-hero .top-slide-nav-btn:focus,
.cc-coros-hero__nav-btn:hover,
.cc-coros-hero__nav-btn:focus {
  background: rgba(0, 0, 0, 0.52) !important;
  opacity: 1;
}

/* Chevrons with custom CSS arrows */
.cc-coros-hero__arrow {
  position: relative;
  width: 18px;
  height: 14px;
  display: block;
}

.cc-coros-hero__arrow::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 2px;
  width: 14px;
  height: 2px;
  background: #fff;
}

.cc-coros-hero__arrow::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.cc-coros-hero__arrow--prev::after {
  left: 1px;
  transform: rotate(-45deg);
}

.cc-coros-hero__arrow--next::after {
  right: 1px;
  transform: rotate(135deg);
}

.cc-coros-hero__arrow--next::before {
  left: 2px;
}

/* ==========================================================================
   6. Autoplay Button PC Circular (top-slide-autoplay)
   ========================================================================== */
.cc-coros-hero .top-slide-autoplay,
.cc-coros-hero__autoplay-wrap {
  position: absolute;
  right: clamp(52px, 5vw, 90px);
  bottom: clamp(60px, 8vh, 96px);
  z-index: 9;
}

.cc-coros-hero .top-slide-autoplay-btn,
.cc-coros-hero__autoplay {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.cc-coros-hero .top-slide-autoplay-btn:hover,
.cc-coros-hero .top-slide-autoplay-btn:focus,
.cc-coros-hero__autoplay:hover,
.cc-coros-hero__autoplay:focus {
  background: rgba(0, 0, 0, 0.56);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Pause icon with 2 bars */
.autoplay-pause-icon,
.cc-coros-hero__pause-icon {
  position: relative;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}

.autoplay-pause-icon i,
.cc-coros-hero__pause-icon i {
  display: block;
  width: 3px;
  height: 14px;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

/* Play state (triangle chevron) when paused */
.cc-coros-hero__autoplay.is-paused .autoplay-pause-icon i,
.cc-coros-hero__autoplay.is-paused .cc-coros-hero__pause-icon i {
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-coros-hero__autoplay.is-paused .autoplay-pause-icon::before,
.cc-coros-hero__autoplay.is-paused .cc-coros-hero__pause-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 0;
  height: 0;
  border-left: 10px solid #ffffff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  background: transparent;
}

/* ==========================================================================
   7. Estilos Móvil (cc-coros-hero-mobile)
   ========================================================================== */
.cc-coros-hero-mobile {
  position: relative;
  width: 100%;
  height: 100dvh !important;
  min-height: 100dvh !important;
  max-height: none !important;
  overflow: hidden;
  background: #000;
}

/* Hide desktop autoplay in mobile */
.cc-coros-hero-mobile .cc-coros-hero__autoplay-wrap,
.cc-coros-hero-mobile .cc-coros-hero__autoplay {
  display: none !important;
}

/* Slides Móvil */
.cc-coros-hero-mobile__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.cc-coros-hero-mobile__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Media Móvil */
.cc-coros-hero-mobile__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.cc-coros-hero-mobile .cc-coros-hero-mobile__media,
.cc-coros-hero-mobile .cc-coros-hero-mobile__media video,
.cc-coros-hero-mobile .cc-coros-hero-mobile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: none !important;
  transform: scale(1.001) !important;
}

/* Máscara de Contraste Móvil Premium */
@media (max-width: 859px) {
  .cc-coros-hero-mobile__mask {
    background: 
      radial-gradient(circle at 50% 70%, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.50) 100%) !important;
  }
}

/* Contenido Móvil */
.cc-coros-hero-mobile .cc-coros-hero-mobile__content {
  position: absolute;
  left: 50%;
  bottom: clamp(96px, 15vh, 150px);
  transform: translateX(-50%);
  width: min(92vw, 500px);
  z-index: 3;
  text-align: center;
  color: #fff;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.55);
  pointer-events: auto;
}

/* Tipografía Móvil Premium */
.cc-coros-hero-mobile__title {
  margin: 0 0 6px 0;
  font-family: var(--cc-coros-font-title);
  font-size: clamp(48px, 14vw, 76px);
  line-height: 0.86;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff !important;
  opacity: 1 !important;
}

.cc-coros-hero-mobile__subtitle {
  margin: 0 0 12px 0;
  font-family: var(--cc-coros-font-title);
  font-size: clamp(30px, 8.6vw, 52px);
  line-height: 0.86;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff !important;
  opacity: 1 !important;
}

.cc-coros-hero-mobile__description {
  margin: 0 auto;
  max-width: 90%;
  font-family: var(--cc-coros-font-text);
  font-size: clamp(15px, 4.2vw, 21px);
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Balance de slides móvil sin subtítulo */
.cc-coros-hero-mobile__content--simple .cc-coros-hero-mobile__title {
  font-size: clamp(48px, 14vw, 76px);
  margin-bottom: 20px;
}

/* Botones Móvil Premium (Preservados en override) */
.cc-coros-hero-mobile__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cc-coros-hero-mobile__button {
  min-width: 132px;
  height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

/* Navegación Móvil */
.cc-coros-hero-mobile__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}

.cc-coros-hero-mobile .top-slide-nav-btn,
.cc-coros-hero-mobile__nav-btn {
  width: 42px !important;
  height: 42px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(0, 0, 0, 0.34) !important;
  box-shadow: none !important;
}

/* ==========================================================================
   8. Dots Premium (PC & Móvil)
   ========================================================================== */
.cc-coros-hero__dots,
.cc-coros-hero-mobile__dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 8px;
}

.cc-coros-hero__dots {
  bottom: 38px;
}

.cc-coros-hero-mobile__dots {
  bottom: 34px;
}

.cc-coros-hero__dot,
.cc-coros-hero-mobile__dot {
  height: 2px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.25s ease, width 0.25s ease;
}

.cc-coros-hero__dot {
  width: 28px;
}

.cc-coros-hero-mobile__dot {
  width: 24px;
}

.cc-coros-hero__dot.is-active {
  background: #ffffff;
  width: 48px;
}

.cc-coros-hero-mobile__dot.is-active {
  background: #ffffff;
  width: 36px;
}

/* ==========================================================================
   9. After Hero Shortcode Section
   ========================================================================== */
.cc-coros-after-hero {
  background: #ffffff;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(24px, 7vw, 110px);
  width: 100%;
}

.cc-coros-after-hero__link {
  color: #000000 !important;
  font-family: var(--cc-coros-font-text);
  font-size: clamp(18px, 1.4vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.25s ease;
}

.cc-coros-after-hero__link:hover,
.cc-coros-after-hero__link:focus {
  opacity: 0.8;
}

/* ==========================================================================
   10. Protección de Seguridad Anti-File Input Frontend
   ========================================================================== */
.cc-coros-hero input[type="file"],
.cc-coros-hero-mobile input[type="file"],
.cc-coros-hero-pc input[type="file"] {
  display: none !important;
}

/* ==========================================================================
   11. Breakpoints de Ajuste Fino / Responsivo Fino y Tablet
   ========================================================================== */

/* Tablet Responsive Range (860px - 1024px) */
@media (min-width: 860px) and (max-width: 1024px) {
  .cc-coros-hero-pc {
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: none !important;
  }
  .cc-coros-hero-pc .cc-coros-hero__content {
    bottom: clamp(82px, 10vh, 116px) !important;
  }
  .cc-coros-hero-pc .cc-coros-hero__title {
    font-size: clamp(58px, 8vw, 86px) !important;
  }
  .cc-coros-hero-pc .cc-coros-hero__subtitle {
    font-size: clamp(30px, 4.4vw, 48px) !important;
  }
  .cc-coros-hero-pc .cc-coros-hero__description {
    font-size: clamp(15px, 2vw, 20px) !important;
  }
  .cc-coros-hero .top-slide-nav-btn,
  .cc-coros-hero__nav-btn {
    width: 46px !important;
    height: 46px !important;
    border-radius: 0 !important;
  }
}

/* Teléfonos extra angostos (< 390px) */
@media (max-width: 390px) {
  .cc-coros-hero-mobile {
    height: 100dvh !important;
    min-height: 100dvh !important;
  }
  .cc-coros-hero-mobile__actions {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .cc-coros-hero-mobile__button,
  .cc-coros-hero-mobile .custom-btn {
    width: 100%;
    max-width: 220px;
    height: 40px;
    padding: 0 16px;
    font-size: 11px;
  }
}

/* Teléfonos pequeños (< 360px) */
@media (max-width: 359px) {
  .cc-coros-hero-mobile {
    height: 100dvh !important;
    min-height: 100dvh !important;
  }
  .cc-coros-hero-mobile .cc-coros-hero-mobile__content {
    bottom: clamp(76px, 10vh, 120px);
    width: 92vw;
  }
  .cc-coros-hero-mobile__nav {
    padding: 0 12px;
    bottom: 24px;
  }
  .cc-coros-hero-mobile__nav-btn {
    width: 36px;
    height: 36px;
  }
  .cc-coros-hero-mobile__dots {
    bottom: 18px;
  }
}

/* Teléfonos normales / Phone (< 767px) */
@media (max-width: 767px) {
  .cc-coros-hero-mobile__nav {
    bottom: 24px;
  }
  .cc-coros-hero-mobile__dots {
    bottom: 20px;
  }
}

/* Breakpoint intermedio / Phone Wide (< 860px) */
@media (max-width: 859px) {
  .cc-coros-hero-mobile__content {
    pointer-events: auto;
  }
}

/* Tablets e inferiores (860px - 980px) */
@media (min-width: 860px) and (max-width: 979px) {
  .cc-coros-hero-pc .cc-coros-hero__content {
    bottom: clamp(70px, 10vh, 120px);
  }
  .cc-coros-hero .top-slide-nav-btn.prev,
  .cc-coros-hero__nav-btn--prev {
    left: 20px;
  }
  .cc-coros-hero .top-slide-nav-btn.next,
  .cc-coros-hero__nav-btn--next {
    right: 20px;
  }
  .cc-coros-hero .top-slide-autoplay,
  .cc-coros-hero__autoplay-wrap {
    right: 20px;
  }
}

/* Tablet Wide (981px - 1024px) */
@media (min-width: 980px) and (max-width: 1023px) {
  .cc-coros-hero-pc .cc-coros-hero__content {
    bottom: clamp(74px, 11vh, 130px);
  }
  .cc-coros-hero .top-slide-nav-btn.prev,
  .cc-coros-hero__nav-btn--prev {
    left: 24px;
  }
  .cc-coros-hero .top-slide-nav-btn.next,
  .cc-coros-hero__nav-btn--next {
    right: 24px;
  }
  .cc-coros-hero .top-slide-autoplay,
  .cc-coros-hero__autoplay-wrap {
    right: 24px;
  }
}

/* Widescreen (> 1280px) */
@media (min-width: 1281px) and (max-width: 1440px) {
  .cc-coros-hero-pc .cc-coros-hero__content {
    bottom: clamp(84px, 12vh, 145px);
  }
  .cc-coros-hero .top-slide-actions,
  .cc-coros-hero__actions {
    gap: 20px;
  }
}

/* Pantallas Ultra Wide (> 1440px) */
@media (min-width: 1441px) {
  .cc-coros-hero-pc .cc-coros-hero__content {
    bottom: clamp(100px, 13vh, 170px);
  }
  .cc-coros-hero .top-slide-actions,
  .cc-coros-hero__actions {
    margin-top: 36px;
    gap: 24px;
  }
}

/* ==========================================================================
   1.0.11 MOBILE OVERRIDES
   ========================================================================== */
.cc-coros-hero-mobile {
  --cc-coros-font-title: var(--font-DINCOROS-Bold), "DINCOROS-Bold", "DIN Condensed Bold", "DIN Condensed", sans-serif;
  --cc-coros-font-text: "Helvetica Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --cc-coros-font-button: var(--font-PFDINTextPro-Medium), "PFDINTextPro-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (max-width: 859px) {
  .cc-coros-hero-mobile.top-slide-section-mobile {
    position: relative !important;
    width: 100% !important;
    height: calc(100svh - var(--cc-coros-mobile-header-offset, 50px)) !important;
    min-height: 720px !important;
    max-height: 960px !important;
    overflow: hidden !important;
    background: #000 !important;
  }

  .cc-coros-hero-mobile .slide-container,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__container,
  .cc-coros-hero-mobile .slide-content,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__track,
  .cc-coros-hero-mobile .slide-item,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__slide,
  .cc-coros-hero-mobile .slide-image,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__media {
    height: 100% !important;
    min-height: 100% !important;
  }

  .cc-coros-hero-mobile .slide-image video,
  .cc-coros-hero-mobile .slide-image img,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__media video,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  .cc-coros-hero-mobile .slide-info,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__content {
    position: absolute !important;
    left: 50 !important;
    bottom: clamp(78px, 9svh, 108px) !important;
    transform: translateX(-50%) !important;
    z-index: 4 !important;
    width: min(91vw, 420px) !important;
    text-align: center !important;
    color: #fff !important;
    text-shadow: 0 3px 24px rgba(0,0,0,.55) !important;
  }

  .cc-coros-hero-mobile .slide-title,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__title {
    margin: 0 !important;
    color: #fff !important;
    opacity: 1 !important;
    font-family: var(--cc-coros-font-title) !important;
    font-size: clamp(38px, 11.2vw, 50px) !important;
    line-height: .88 !important;
    font-weight: 700 !important;
    letter-spacing: .025em !important;
    text-transform: uppercase !important;
    white-space: normal !important;
    text-wrap: balance;
  }

  .cc-coros-hero-mobile .cc-coros-hero-mobile__subtitle {
    margin: 8px 0 16px !important;
    color: #fff !important;
    opacity: 1 !important;
    font-family: var(--cc-coros-font-title) !important;
    font-size: clamp(24px, 7vw, 34px) !important;
    line-height: .94 !important;
    font-weight: 700 !important;
    letter-spacing: .03em !important;
    text-transform: uppercase !important;
  }

  .cc-coros-hero-mobile .slide-description,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__description {
    margin: 0 auto !important;
    max-width: 92% !important;
    color: #fff !important;
    opacity: 1 !important;
    font-family: var(--cc-coros-font-text) !important;
    font-size: clamp(14px, 3.85vw, 17px) !important;
    line-height: 1.38 !important;
    font-weight: 400 !important;
    letter-spacing: .055em !important;
    text-transform: uppercase !important;
  }

  .cc-coros-hero-mobile__content--simple .cc-coros-hero-mobile__title {
    margin-bottom: 22px !important;
  }

  .cc-coros-hero-mobile .slide-actions,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__actions {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    margin-top: 28px !important;
    width: 100% !important;
  }

  .cc-coros-hero-mobile .custom-btn,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__button {
    min-width: 132px !important;
    height: 42px !important;
    padding: 0 16px !important;
    border: 1px solid rgba(255,255,255,.95) !important;
    background: transparent !important;
    color: #fff !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-family: var(--cc-coros-font-button) !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: .045em !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
  }

  .cc-coros-hero-mobile .custom-btn span,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__button span {
    line-height: 1 !important;
    display: block !important;
  }

  .cc-coros-hero-mobile .top-slide-nav,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__nav {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 42% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    z-index: 7 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-left: clamp(14px, 4vw, 22px) !important;
    padding-right: clamp(14px, 4vw, 22px) !important;
    pointer-events: none !important;
  }

  .cc-coros-hero-mobile .top-slide-nav-btn,
  .cc-coros-hero-mobile .cc-coros-hero__nav-btn {
    pointer-events: auto !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 0 !important;
    border: 1px solid rgba(255,255,255,.65) !important;
    background: rgba(0,0,0,.24) !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  .cc-coros-hero-mobile__dots {
    position: absolute !important;
    left: 50% !important;
    bottom: 28px !important;
    transform: translateX(-50%) !important;
    z-index: 8 !important;
    display: flex !important;
    gap: 8px !important;
  }

  .cc-coros-hero-mobile__dot {
    width: 24px !important;
    height: 2px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,.35) !important;
  }

  .cc-coros-hero-mobile__dot.is-active {
    width: 42px !important;
    background: #fff !important;
  }

  /* Específico APEX 4 */
  .cc-coros-slide--apex4 .cc-coros-hero-mobile__content {
    width: min(94vw, 430px) !important;
  }
  .cc-coros-slide--apex4 .cc-coros-hero-mobile__title {
    margin-bottom: 22px !important;
    font-size: clamp(36px, 10.4vw, 48px) !important;
    line-height: .88 !important;
    letter-spacing: .02em !important;
  }
  .cc-coros-slide--apex4 .cc-coros-hero-mobile__description {
    max-width: 90% !important;
    font-size: clamp(14px, 3.85vw, 17px) !important;
    line-height: 1.42 !important;
  }
}

@media (max-height: 720px) and (max-width: 859px) {
  .cc-coros-hero-mobile .top-slide-nav,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__nav {
    top: 40% !important;
  }
}

@media (max-width: 390px) {
  .cc-coros-hero-mobile.top-slide-section-mobile {
    min-height: 690px !important;
  }
}

@media (max-width: 360px) {
  .cc-coros-hero-mobile .slide-actions,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__actions {
    gap: 8px !important;
  }

  .cc-coros-hero-mobile .custom-btn,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__button {
    min-width: 122px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 330px) {
  .cc-coros-hero-mobile .slide-actions,
  .cc-coros-hero-mobile .cc-coros-hero-mobile__actions {
    flex-wrap: wrap !important;
  }
}
