/* =========================
   ROOT / BASE PREMIUM
========================= */
:root {
  --black: #000;
  --white: #fff;
  --gray: #f6f6f6;
  --sand: #f0eae2;
  --text-soft: rgba(255,255,255,0.85);
  --accent: #1e2226;
}

body {
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =========================
   TYPO / UTILS (MEJORADOS)
========================= */
.upper { text-transform: uppercase; letter-spacing: .08em; }
.lh1 { line-height: 1; }

.gmo-white { color: var(--white) !important; }

.mb10 { margin-bottom: 10px; }
.mb15 { margin-bottom: 15px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }

.mt20 { margin-top: 20px; }
.mt40 { margin-top: 40px; }
.mt60 { margin-top: 60px; }

.topbot40 { padding: 40px 0; }
.topbot60 { padding: 60px 0; }

.pads0 { padding: 0 !important; }
.pads15 { padding: 15px; }
.pads30 { padding: 30px; }

/* =========================
   CONTAINERS (STYLE RETAIL PREMIUM)
========================= */

/* =========================
   BACKGROUNDS
========================= */
.bg-gray { background: var(--gray); }
.bg-sand { background: var(--sand); }

/* =========================
   GLOBAL HIDE (KEEP)
========================= */
.section-header,
.announcement-bar-section,
#footer-help,
#footer-help-l {
  display: none;
}

/* =========================
   HERO VIDEO (MUCHO MÁS CLEAN / LUXE)
========================= */
.topbot-video {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* overlay tipo Sunglass Hut */
.video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.2),
    rgba(0,0,0,.65)
  );
}

/* =========================
   HERO CONTENT (EDITORIAL STYLE)
========================= */
.pos-video-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 720px;
  z-index: 2;
  text-align: left;
}

.pos-video-content h2 {
  font-size: clamp(2.2rem, 4vw, 2.5rem)!important;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

/* =========================
   LOGO / CTA (LUXE FLOATING UI)
========================= */
.banner-logo-rb {
  position: absolute;
  top: 40px;
  left: 40px;
  max-width: 160px;
  filter: brightness(1);
  z-index: 3;
}

.topbot-video button.atc-coll {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(255,255,255,0.95);
  color: #000;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  transition: .3s ease;
  z-index: 3;
}

.topbot-video button.atc-coll:hover {
  transform: translateY(-2px);
  background: #fff;
}

/* =========================
   BUTTON SCROLL CTA
========================= */
.topbot-video button.goto-content {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: .15em;
}

/* =========================
   BENEFITS (GLASS STYLE LUXE)
========================= */
.rb-benefit-box {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 14px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.03);
	
}

.rb-benefit-box div {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 0.85rem;
	min-height: 120px;
}

.rb-benefit-box img {
  filter: invert(1);
  max-width: 22px;
}

/* =========================
   SWIPER (CLEAN RETAIL NAV)
========================= */
.swiper-button-prev,
.swiper-button-next {
  background: rgba(30,34,38,0.9);
  border-radius: 50%;
  width: 34px;
  height: 34px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 0.9rem;
}

/* =========================
   PRODUCTS (MINIMAL LUXE GRID)
========================= */
.prod-carousel-bs .swiper-prod {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: .3s ease;
}

.prod-carousel-bs .swiper-prod:hover {
  transform: translateY(-4px);
}

.prod-carousel-bs .swiper-prod-img {
  background: #fff;
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prod-carousel-bs .swiper-prod-content {
  padding: 16px;
  background: #fff;
  text-align: center;
}

/* =========================
   STEPS (RETAIL PROCESS FLOW)
========================= */
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.step-title {
  font-size: 1.4rem;
  font-weight: 300;
}

.step-button {
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  transition: .3s ease;
}

.step-button:hover {
  transform: scale(1.05);
}

/* dotted line softer */
.steps-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12%;
  right: 12%;
  border-top: 1px dashed rgba(0,0,0,0.2);
}

/* =========================
   RESPONSIVE CLEAN
========================= */
@media (max-width: 992px) {
  .pos-video-content {
    left: 5%;
    max-width: 90%;
  }

  .banner-logo-rb {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .pos-video-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .topbot-video button.atc-coll {
    position: static;
    margin: 20px auto;
    display: block;
  }
}

/* ==========================
   ESCALA GLOBAL
========================== */

@font-face {
    font-family: zirkon-r;
    font-weight: 400;
    font-style: normal;
	src: url("../fonts/GTZirkon_Light.woff2" )  format("woff2");
}


@font-face {
    font-family: zirkon-m;
    font-weight: 400;
    font-style: normal;
	src: url("../fonts/GTZirkon_Medium.woff2" )  format("woff2");
}


@font-face {
    font-family: zirkon-l;
    font-weight: 400;
    font-style: normal;
	src: url("../fonts/GTZirkon_Light.woff2" )  format("woff2");
}


html{
    font-size:14px;
	font-family: zirkon-l;
}

body{
    font-size:14px;
    line-height:1.5;
}

/* Bootstrap Overrides */


b, strong {
    font-family: zirkon-r;
    font-weight: 400;
    font-size: inherit;
}


.h1,
h1{
    font-size:2rem !important;
    line-height:1.1;
	font-family: zirkon-l, sans-serif;
	font-weight: 500;
}

.h2,
h2{
    font-size:1.6rem !important;
	font-family: zirkon-l, sans-serif;
}

.h3,
h3{
    font-size:1.3rem !important;
	font-family: zirkon-l, sans-serif;
}

.h4,
h4{
    font-size:1rem !important;
	font-family: zirkon-l, sans-serif;
}

.fs-1{
    font-size:2rem !important;
	font-family: zirkon-l, sans-serif;
}

.fs-2{
    font-size:1.7rem !important;
	font-family: zirkon-l, sans-serif;
}

.fs-3{
    font-size:1.35rem !important;
}

.fs-4 {
    font-size:1rem!important;
}

.fs-5{
    font-size:.90rem !important;
}

.fs-6{
    font-size:.85rem !important;
}

p{
    font-size:1.2rem!important;
	line-height:2rem!important;
}


.accordion-body {
    font-size:1.2rem!important;
	line-height:2rem!important;
}



.text-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 520px;
}

/* =========================
   PRETITLE (PREGUNTA)
========================= */
.text-content .pretitle {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* =========================
   TITLE (HEADLINE PRINCIPAL)
========================= */
.title {
      font-family: Acta Headline, serif !important;
}

/* =========================
   DESCRIPTION (BODY TEXT)
========================= */
.text-content .description {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}

/* FIX IMPORTANTE: tu HTML tiene <p> dentro de <p> */
.text-content .description p {
  margin: 0;
}

.text-content {
  backdrop-filter: blur(0px);
}

.text-content .title {
  margin-top: 0.2rem;
}

.text-content .pretitle {
  opacity: 0.9;
}
