@font-face {
  font-family: "Audiowide-Regular";
  src:
    url("/assets/fonts/Audiowide-Regular.woff2") format("woff2"),
    url("/assets/fonts/Audiowide-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Michroma-Regular";
  src:
    url("/assets/fonts/Michroma-Regular.woff2") format("woff2"),
    url("/assets/fonts/Michroma-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src:
    url("/assets/fonts/Cairo.woff2") format("woff2"),
    url("/assets/fonts/Cairo.woff") format("woff");
  font-display: swap;
}

:root {
  --primary: #ffb84d;
  --primary-strong: #ff9a1d;
  --secondary: #0d162f;
  --secondary-soft: #1a2747;
  --secondary-transparent: #0d162fdb;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.76);
  --muted2: rgba(255, 255, 255, 0.6);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius-lg: 26px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--secondary); /* color base para evitar destellos en mobile */
}
html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);

  /* IMPORTANTE: deja el fondo del body TRANSPARENTE,
     el “fondo real” lo pintará el ::before */
  background: var(--secondary);

  font-family: "Cairo", "Michroma-Regular", "Audiowide-Regular";
  overflow-x: hidden;
  position: relative;
  padding-top: 0px;
}
main {
  padding-top: 86px; /* deja espacio fijo para el header */
}
/* Fondo global */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      1100px 760px at 14% 14%,
      rgba(255, 184, 77, 0.2),
      transparent 60%
    ),
    radial-gradient(
      1000px 760px at 86% 8%,
      rgba(255, 184, 77, 0.16),
      transparent 62%
    ),
    radial-gradient(
      1400px 980px at 50% 96%,
      rgba(74, 91, 122, 0.32),
      transparent 72%
    ),
    linear-gradient(160deg, #050915 0%, #0d162f 52%, #050915 100%);
  z-index: 0; /* <- antes estaba en -1 */
  pointer-events: none;
}

/* Todo el contenido por encima del fondo */
body > * {
  position: relative;
  z-index: 1;
}

/* Background layer fijo, único para toda la web */
.pageBg {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;

  background:
    radial-gradient(
      1100px 760px at 14% 14%,
      rgba(255, 184, 77, 0.2),
      transparent 60%
    ),
    radial-gradient(
      1000px 760px at 86% 8%,
      rgba(255, 184, 77, 0.16),
      transparent 62%
    ),
    radial-gradient(
      1400px 980px at 50% 96%,
      rgba(74, 91, 122, 0.32),
      transparent 72%
    ),
    linear-gradient(160deg, #050915 0%, #0d162f 52%, #050915 100%);

  /* evita artefactos raros en algunos navegadores */
  transform: translateZ(0);
  will-change: transform;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
li {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  /* padding: 22px 18px 80px; */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  transition: 0.4s all;
  backdrop-filter: blur(6px);
  background: linear-gradient(
    180deg,
    rgba(13, 22, 47, 0.96) 0%,
    rgba(13, 22, 47, 0.86) 60%,
    rgba(13, 22, 47, 0.72) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-hidden {
  transform: translateY(-110%);
}

/* navigation bar */
.navbar {
  padding: 0;
}

.navbar-expand-lg .navbar-nav {
  align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 12px;
  font-weight: 600;
  transition: 0.4s all;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: var(--primary);
}

.navbar-expand-lg .navbar-nav .nav-item .btn_block {
  margin-left: 30px;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
  color: var(--secondary);
  background-color: var(--primary);
  font-size: 16px;
  padding: 9px 40px;
  border-radius: 25px;
  position: relative;
  transform: translate3d(-3px, -4px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.4s all;
  z-index: 2;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn:hover {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.navbar-brand h3 {
  color: var(--primary);
  font-weight: 800;
  font-size: 34px;
  margin: 0;
}

/* navigation bar dropdown */

.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.toggle-bar {
  width: 25px;
  margin: 10px 0;
  position: relative;
  border-top: 4px solid var(--primary);
  display: block;
}

.toggle-bar::before,
.toggle-bar::after {
  content: "";
  display: block;
  background: var(--primary);
  height: 4px;
  width: 30px;
  position: absolute;
  top: -12px;
  right: 0px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform-origin: 13%;
  -webkit-transform-origin: 13%;
  transform-origin: 13%;
}

.toggle-bar::after {
  top: 4px;
}

.toggle-wrap.active .toggle-bar {
  border-top: 6px solid transparent;
}

.toggle-wrap.active .toggle-bar::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.toggle-wrap.active .toggle-bar::after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.brandFont {
  font-family: "Audiowide-Regular", "Cairo";
  /* color: var(--primary); */
  letter-spacing: 0.06em;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand:hover {
  color: var(--primary);
}
.logoIcon {
  width: 36px;
  height: 36px;
}
.brandName {
  font-family: "Audiowide-Regular", "Michroma-Regular", "Cairo";
  letter-spacing: 0.06em;
  font-size: 19px;
  line-height: 1.1;
}
.brandTagline {
  font-family: "Michroma-Regular", "Cairo";
  color: var(--muted2);
  font-size: 11px;
  margin-top: 2px;
  letter-spacing: 0.03em;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.rhymo {
  font-family: "Audiowide-Regular", "Cairo";
  color: var(--primary);
  letter-spacing: 0.06em;
}

.note {
  margin-top: 10px;
  color: var(--muted2);
  font-size: 13px;
}

.section {
  margin-top: 34px;
}
.sectionTitle {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.sectionTitle h2 {
  margin: 0;
  font-family: "Michroma-Regular", "Cairo";
  font-size: 16px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}
.sectionTitle p {
  margin: 0;
  color: var(--muted2);
  font-size: 13px;
}

.reel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
}
.reel::before,
.reel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.reel::before {
  left: 0;
  background: linear-gradient(90deg, #0b1226 0%, rgba(11, 18, 38, 0) 100%);
}
.reel::after {
  right: 0;
  background: linear-gradient(270deg, #0b1226 0%, rgba(11, 18, 38, 0) 100%);
}

.reelViewport {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: auto;
  overscroll-behavior-x: contain;

  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-x;
  touch-action: pan-y;
  -webkit-user-drag: none;
  cursor: grab;
}
.reelViewport::-webkit-scrollbar {
  display: none;
}
.reelViewport.is-dragging {
  cursor: grabbing;
}
.reelViewport.is-dragging * {
  pointer-events: none;
}

.reelViewport,
.reelTrack {
  position: relative;
  z-index: 1;
}

.reelTrack {
  display: flex;
  gap: 14px;
  padding: 18px;
  width: max-content;
  will-change: transform;
}
.reel img {
  user-select: none;
  -webkit-user-drag: none; /* evita drag de imagen */
  pointer-events: none; /* opcional: si quieres que no “capture” el mouse */
}

/* Accesibilidad: si el usuario pide menos animación, no auto-scroll */
@media (prefers-reduced-motion: reduce) {
  .reel {
    scroll-behavior: auto;
  }
}

.shotCard {
  min-width: 260px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 12px 12px 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  scroll-snap-align: start;
}
.shotCard.tone2 {
  background:
    radial-gradient(
      220px 180px at 40% 12%,
      rgba(255, 184, 77, 0.16),
      transparent 70%
    ),
    rgba(255, 255, 255, 0.05);
}
.shotCard.tone3 {
  background:
    radial-gradient(
      180px 160px at 60% 10%,
      rgba(20, 86, 173, 0.18),
      transparent 70%
    ),
    rgba(255, 255, 255, 0.05);
}
.shotDevice {
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  margin-bottom: 10px;
}
.shotDevice img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.shotCard figcaption {
  color: var(--muted);
  font-size: 13px;
  margin: 0 2px;
}

.faq {
  display: grid;
  gap: 10px;
}
details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  padding: 14px 14px;
}
summary {
  cursor: pointer;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

footer {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted2);
  font-size: 13px;
}
footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}
footer a:hover {
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 900px) {
  .reelTrack {
    animation-duration: 26s;
  }
}
@media (max-width: 720px) {
  .reelTrack {
    animation-duration: 20s;
  }
}
@media (max-width: 520px) {
  .shotCard {
    min-width: 230px;
  }
}
/* hero slider wraper */
.banner_section {
  margin-top: 70px;
  scroll-margin-top: 200px; /*Son 175px exactos, pero dejamos un poco mas por seguridad*/
  position: relative;
  overflow: hidden; /* evita desbordes horizontales por decoraciones absolutas */
}

.banner_section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  width: 1250px;
  height: 1000px;
}

.banner_section .container {
  position: relative;
}

.banner_section .row {
  align-items: center;
}

/* hero slider text */
.banner_section .banner_text {
  margin-top: -50px;
}

/* hero slider heading (visual title) */
.banner_section .banner_text .heroTitle {
  font-size: 50px;
  letter-spacing: -1.5px;
  font-weight: 700;
  line-height: 1.1;
  margin: 10px 0 20px;
}
.banner_section .banner_text .heroTitle span {
  color: var(--primary);
}

.banner_section .banner_text .type-wrap span {
  font-weight: 700;
  color: var(--primary-strong);
}

/* hero slider button */
.banner_section .app_btn {
  margin-top: 100px;
  display: flex;
  align-items: center;
}

/* hero slider list */

.banner_section .app_btn li:last-child {
  margin-left: 25px;
}

/* hero slider users */

/* hero slider images */
.banner_section .banner_slider {
  display: flex;
  position: relative;
  z-index: 1;
}

/* hero slider mobile frame */

/* hero slider control dots */

/* hero static image */

.banner_section .banner_slider .hero_img {
  text-align: center;
  width: 100%;
}

.banner_section .banner_slider .hero_img img {
  width: 100%;
}

.scroll_section {
  scroll-margin-top: 150px;
}

/* Footer inspired layout (Appix-like) but RHYMO styling */
.footer {
  margin-top: 64px;
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--secondary);
}

.footerShell {
  position: relative;
}

.footerTop {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: 24px;
  padding: 22px;
  backdrop-filter: blur(10px);
}

.footerCol {
  min-width: 0;
}

.footerLogo {
  display: inline-flex;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.footerText {
  margin: 10px 0 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 42ch;
}

.footerTextSmall {
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.footerTitle {
  margin: 4px 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.82);
}

.footerLinks,
.footerMeta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footerLinks a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.76);
  transition:
    transform 0.15s ease,
    color 0.15s ease;
}
.footerLinks a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footerMeta li {
  display: grid;
  gap: 2px;
}
.metaLabel {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.metaValue {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.metaValue:hover {
  color: #fff;
}

.footerSocial {
  display: flex;
  gap: 10px;
}

.iconBtn {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}
.iconBtn svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.86);
}
.iconBtn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 184, 77, 0.45);
  background: rgba(255, 184, 77, 0.1);
}

.footerForm {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 8px;
}

.footerInput {
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 18, 38, 0.35);
  color: #fff;
  outline: none;
}
.footerInput::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.footerInput:focus {
  border-color: rgba(255, 184, 77, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 184, 77, 0.12);
}

.footerBtn {
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 184, 77, 0.55);
  background: rgba(255, 184, 77, 0.18);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.footerBtn:hover {
  transform: translateY(-1px);
  background: rgba(255, 184, 77, 0.26);
  border-color: rgba(255, 184, 77, 0.75);
}

.footerBadges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

/* Footer newsletter block (below columns) */
.footerNewsletter {
  margin-top: 18px;
  padding: 24px;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}
.footerNewsletterInner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.footerNewsletterHead .footerTitle {
  margin-top: 0;
}
@media (max-width: 980px) {
  .footerNewsletterHead {
    width: 100%;
  }
  .footerNewsletterInner {
    grid-template-columns: 1fr;
  }
}
.footerBottom {
  margin-top: 18px;
  padding: 14px 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footerCopy {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footerMiniNav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footerMiniNav a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
}
.footerMiniNav a:hover {
  color: #fff;
}

/* a11y helper */
.srOnly {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .footerTop {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footerTop {
    grid-template-columns: 1fr;
  }
  .footerBadges {
    grid-template-columns: 1fr;
  }
}

.footer .app_btn {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

/* hero slider list */

.footer .app_btn li:last-child {
  margin-left: 25px;
}

.why {
  position: relative;
  padding: 64px 0 34px;
  overflow: hidden; /* en móvil decorativos absolutos no fuerzan scroll */
}

.why::before,
.why::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.why::before {
  width: 780px;
  height: 520px;
  left: -220px;
  top: -120px;
  filter: blur(0px);
}

.why::after {
  width: 700px;
  height: 500px;
  right: -240px;
  top: 30px;
}

.why .container {
  position: relative;
  z-index: 1;
}

.whyHead {
  max-width: 720px;
  margin-bottom: 18px;
}

.whyKicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
}

.whyDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(255, 184, 77, 0.14);
}

.whyTitle {
  margin: 14px 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.whySub {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-size: 16px;
  max-width: 60ch;
}

.whyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

/* Card */
.whyCard {
  position: relative;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.035)
  );
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
  overflow: hidden;
}

.whyCard::before {
  content: "";
  position: absolute;
  inset: -120px -140px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(255, 184, 77, 0.14),
    transparent 65%
  );
  pointer-events: none;
}

.whyCard:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 184, 77, 0.26);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.04)
  );
}

.whyIcon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 184, 77, 0.25);
  background: rgba(255, 184, 77, 0.12);
  box-shadow: 0 14px 40px rgba(255, 184, 77, 0.1);
}

.whyIconImg {
  width: 26px; /* tamaño real del icono */
  height: 26px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
  opacity: 0.95;
}

.whyCard h3 {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.whyCard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
  font-size: 14px;
}

.whyMeta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.whyPill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.whyFoot {
  margin-top: 16px;
}

.whyHighlight {
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    90deg,
    rgba(255, 184, 77, 0.12),
    rgba(255, 255, 255, 0.04) 55%,
    rgba(74, 91, 122, 0.08)
  );
  color: rgba(255, 255, 255, 0.78);
}

/* Responsive */
@media (max-width: 900px) {
  .whyGrid {
    grid-template-columns: 1fr;
  }
  .whyCard:hover {
    transform: none;
  }
}
.how {
  position: relative;
  padding: 64px 0 34px;
  overflow: hidden;
}

.how::before {
  content: "";
  position: absolute;
  left: -220px;
  bottom: -180px;
  width: 820px;
  height: 560px;
  pointer-events: none;
  z-index: 0;
}

.how .container {
  position: relative;
  z-index: 1;
}

.howHead {
  margin-bottom: 16px;
}

.howKicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
}

.howDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(255, 184, 77, 0.14);
}

.howTitleRow {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
  align-items: end;
  margin-top: 12px;
}

.howTitle {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.howSub {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-size: 16px;
  max-width: 62ch;
}

.howLayout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 18px;
  margin-top: 18px;
}

/* Timeline */

.howTag {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 7px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.howFinish {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  font-size: 13px;
}

.howFinishDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 184, 77, 0.95);
  box-shadow: 0 0 0 6px rgba(255, 184, 77, 0.12);
}

/* Responsive */
@media (max-width: 980px) {
  .howTitleRow {
    grid-template-columns: 1fr;
  }
  .howLayout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
}

/* HOW — versión: solo 3 pasos (más visual, sin repetición) */
.howLayout--stepsOnly {
  grid-template-columns: 1fr; /* ya no hay columna izquierda */
}

.howSteps {
  position: relative;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.howSteps::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -120px;
  width: 340px;
  height: 340px;
  pointer-events: none;
}

.howStepCard {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 16px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 14px;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

.howStepCard:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 184, 77, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.howStepIcon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 184, 77, 0.25);
  background: rgba(255, 184, 77, 0.12);
  box-shadow: 0 14px 40px rgba(255, 184, 77, 0.1);
  overflow: hidden; /* para que el PNG no se salga */
}

.howStepIconImg {
  width: 26px; /* tamaño real del icono */
  height: 26px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
  opacity: 0.95;
}

.howStepContent {
  min-width: 0;
}

.howStepNum {
  font-family: "Michroma-Regular", "Cairo";
  letter-spacing: 0.08em;
  color: rgba(255, 184, 77, 0.95);
  font-size: 12px;
  opacity: 0.95;
  margin-bottom: 6px;
}
.howStepNum span {
  opacity: 0.75;
  margin-right: 6px;
}
.howStepTopRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.howStepTopRow h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.howStepCard p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 640px) {
  .howStepCard {
    grid-template-columns: 1fr;
  }
  .howStepIcon {
    width: 48px;
    height: 48px;
  }
}
/* =========================
   FAQ — premium accordion
========================= */
.faq {
  padding: 64px 0 34px;
  position: relative;
}

.faqHeader {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.faqTitle {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.faqGrid {
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faqItem {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  margin-bottom: 12px;
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    transform 0.16s ease;
}

.faqItem:last-child {
  margin-bottom: 0;
}

.faqItem:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 184, 77, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.faqQ {
  width: 100%;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
}

.faqQText {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.faqChevron {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  flex: 0 0 auto;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.faqChevron svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.82);
}

.faqA {
  height: 0;
  overflow: hidden;
  transition: height 0.22s ease;
}

.faqAInner {
  padding: 0 16px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  line-height: 1.6;
}

.faqItem.isOpen {
  border-color: rgba(255, 184, 77, 0.26);
  background: rgba(255, 184, 77, 0.05);
}

.faqItem.isOpen .faqChevron {
  border-color: rgba(255, 184, 77, 0.22);
  background: rgba(255, 184, 77, 0.1);
  transform: rotate(180deg);
}

.faqHint {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.faqHintDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 184, 77, 0.9);
  box-shadow: 0 0 0 5px rgba(255, 184, 77, 0.18);
}

@media (max-width: 768px) {
  .faqHeader {
    flex-direction: column;
    align-items: flex-start;
  }
  .faqGrid {
    padding: 14px;
  }
  .faqQ {
    padding: 14px;
  }
}

.mc-form {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.mc-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: left;
}
.mc-row {
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: 520px;
}

.mc-input {
  width: 100%;
  max-width: 520px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  outline: none;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}
.mc-input::placeholder {
  opacity: 0.6;
}
.mc-input:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.mc-gdpr__box {
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.mc-gdpr__title {
  font-weight: 700;
  margin: 0 0 6px;
}
.mc-gdpr {
  width: 100%;
}
.mc-gdpr__desc,
.mc-gdpr__legal,
.mc-gdpr__mailchimp {
  margin: 8px 0 0;
  opacity: 0.85;
  line-height: 1.35;
  font-size: 0.95rem;
}

.mc-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
}
.mc-checkbox input {
  margin-top: 3px;
}

.mc-link {
  text-decoration: underline;
}

.mc-button {
  width: auto;
  min-width: 180px;
  padding: 12px 20px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}
.mc-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.mc-button:active {
  transform: translateY(0px);
}
.mc-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  filter: none;
  transform: none;
}

.mc-responses .mc-error {
  margin-top: 6px;
  opacity: 0.95;
}
.mc-responses .mc-success {
  margin-top: 6px;
  opacity: 0.95;
}

.mc-hint {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 640px) {
  .footerNewsletter {
    padding: 16px 0;
  }
  .mc-row,
  .mc-input {
    max-width: 100%;
  }
  .mc-button {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
}

/* ===========================
   COOKIEBOT – COMPACT MODE
   =========================== */
#CybotCookiebotDialog * {
  font-size: 11px !important;
}

#CybotCookiebotDialogBodyContentText {
  font-size: 10px !important;
}

#CybotCookiebotDialogBodyContentTitle {
  font-size: 12px !important;
}

#CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonSlider::before {
  bottom: 1px !important;
  left: 3px !important;
  width: 18px !important;
  height: 18px !important;
}
#CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonSliderWrapper {
  width: 48px !important;
  height: 20px !important;
}

/* =========================
   DOWNLOAD STATUS MODAL
   ========================= */
.dlModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.dlModal.is-open {
  display: block;
}

.dlBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(2px);
}

.dlSheet {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 520px);
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(13, 22, 47, 0.98),
    rgba(13, 22, 47, 0.92)
  );
  box-shadow: var(--shadow);
}

.dlClose {
  position: absolute;
  top: 10px;
  right: 12px;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);

  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  padding: 0;

  cursor: pointer;
}
.dlClose:hover {
  background: rgba(255, 255, 255, 0.08);
}
.dlHeader {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 40px;
}

.dlBadge {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 184, 77, 0.25);
  background: rgba(255, 184, 77, 0.12);
  color: rgba(255, 184, 77, 0.95);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.dlTitle {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.dlText {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  font-size: 14px;
}

.dlActions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.dlBtnPrimary {
  flex: 1 1 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--primary);
  color: #0b162a;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255, 184, 77, 0.6);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.dlBtnPrimary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.dlBtnGhost {
  flex: 1 1 140px;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  cursor: pointer;
}

.dlHint {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.dlMailInline {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.85);
}

.dlMailInline:hover {
  color: #fff;
}

/* Mobile: bottom sheet */
@media (max-width: 640px) {
  .dlSheet {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    border-radius: 18px 18px 0 0;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* =========================
   STORE BADGES as <button>
   ========================= */

/* Reset de botón para que se comporte como el <a> anterior */
button.store-badge {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
}

/* Estilos que antes estaban en ".app_btn li a" */
.banner_section .app_btn li .store-badge,
.footer .app_btn li .store-badge {
  display: block;
  padding: 15px 35px;
  background-color: var(--black);
  border: none;
  position: relative;
  border-radius: 12px;
  transition: 0.4s all;
  line-height: 0; /* evita “altura extra” de botón */
}

/* Estilos que antes estaban en ".app_btn li a img" */
.banner_section .app_btn li .store-badge img,
.footer .app_btn li .store-badge img {
  transition: 0.4s all;
  height: 36px;
  display: block; /* evita baseline gap */
}
