/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.7;
  
}
a{
    text-decoration: none;
}
/* ================= UTILIDADES ================= */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;

  /* sombra desvanecida */
  box-shadow: 0 8px 5px rgba(0, 0, 0, 0.005);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand img {
  max-height: 46px;
}
/* ===== BOTÓN HAMBURGUESA ===== */
.nav__toggle{
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

/* Iconos base */
.nav__icon{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #111010;
  transition: opacity .25s ease, transform .25s ease;
}

/* Estado inicial */
.nav__icon--close{
  opacity: 0;
  transform: scale(0.8);
}

/* Cuando el menú está abierto */
.nav__toggle.is-open .nav__icon--menu{
  opacity: 0;
  transform: scale(0.8);
}

.nav__toggle.is-open .nav__icon--close{
  opacity: 1;
  transform: scale(1);
}

/* ===== BOTÓN X DENTRO DEL MENÚ ===== */
.nav-panel__close{
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}

.nav-panel__close i{
  font-size: 28px;
  color: #111;
}

/* ================= NAV ================= */
.nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__list a {
  text-decoration: none;
  color: #222;
  font-weight: 400;
  font-size: 15px;
}

/* Botón contacto */
.btn--primary {
  background: #000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: all .25s ease;
}

.btn--primary:hover {
  background: #222;
}

/* Ocultar móvil en desktop */
.nav__toggle,
.nav-overlay {
  display: none;
}

/* ================= HERO ================= */
.hero {
  padding: 70px 0 110px;
  background: #fff;
}

.hero__content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

/* Imagen más pequeña */
.hero__right img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

/* Texto */
.hero__left {
  max-width: 520px;
}

/* Eyebrow */
.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #6a6a6a;
}

/* Nombre */
.display {
  font-size: 58px;
  line-height: 1.02;
  font-weight: 500; /* más editorial */
  letter-spacing: 1px;
  margin-bottom: 28px;
  color: #111;
}

.display .line {
  display: block;
}

/* Texto descriptivo */
.kicker {
  font-size: 15px;
  color: #444;
  max-width: 460px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

  .nav__toggle {
    display: block;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
  }

  .hero {
    padding: 60px 0 90px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__right img {
    max-width: 300px;
    margin: 0 auto;
  }

  .hero__left {
    margin: 0 auto;
  }

  .display {
    font-size: 40px;
  }

  .kicker {
    margin: 0 auto;
  }
}
/* =========================================
   HERO CLARO – estilo imagen de referencia
========================================= */

.hero {
  min-height: auto;
  padding: 100px 0 120px;
  background: #ffffff;
  color: #111;
  align-items: center;
}

/* Quitar overlays oscuros SOLO aquí */
.hero__bg,
.hero__gradient {
  display: none;
}

.hero__content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 96px;
  padding: 0;
}

/* Imagen izquierda */
.hero__right {
  position: relative;
  width: 100%;
  max-width: 420px;   /* 👈 más pequeña */
  transform: none;
  padding: 0;
}

.hero__right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: none;       /* 👈 quitar dramatismo */
  border-radius: 2px;
}

/* Texto derecha */
.hero__left {
  max-width: 520px;
}

/* Eyebrow */
.eyebrow {
  color: #8a8a8a;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Nombre */
.display {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.02;
  color: #111;
  margin-bottom: 24px;
}

/* Texto */
.kicker {
  color: #3a3a3a;
  font-size: 15px;
  line-height: 1.75;
  max-width: 48ch;
}

/* =========================================
   HEADER – sombra suave como la imagen
========================================= */

.site-header {
  background: #fff;
}

.site-header::before {
  background: none;
}



/* Botón contacto */
.btn--primary {
  background: #000 !important;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .12em;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .hero {
    padding: 100px 0 20px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__right {
    margin-inline: auto;
  }

  .hero__left {
    margin-inline: auto;
  }

  .kicker {
    text-align: center;
    padding: 5px 30px;
  }
}
/* ================= RESET BÁSICO ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #111;
}

/* ================= HEADER ================= */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #ffff;
 
}

.site-header .wrap {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */

.brand img {
  height: 42px;   /* más pequeño y elegante */
  width: auto;
  display: block;
}

/* ================= NAVEGACIÓN ================= */

.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__list a {
  color: #f5f5f5; /* ya no blanco puro */
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.nav__list a:hover {
  opacity: 0.75;
}

/* ================= BOTÓN CONTACTAME ================= */

.btn {
  padding: 10px 20px;
  border-radius: 0px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn--primary {
  background: #000;
  color: #fff !important;
  border: 1px solid #000;
  transition: all 0.3s ease;
}

.btn--primary:hover {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
}
/* ================= FIX DEFINITIVO HEADER ================= */

/* DESKTOP */
@media (min-width: 901px) {

  /* El overlay NO debe ocultar el menú */
  .nav-overlay {
    display: block;
    position: static;
    background: none;
    pointer-events: auto;
  }

  .nav-panel {
    position: static;
    background: none;
    padding: 0;
  }

  .nav-panel__close {
    display: none;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    display: flex;
    align-items: center;
    gap: 36px;
  }

  .nav__list a {
    display: inline-block;
    color: #000; /* o #222 si usas header claro */
    z-index: 200;
  }
}

/* MOBILE */
@media (max-width: 900px) {

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
  }

  .nav-overlay.is-open {
    display: block;
  }

  .nav-panel {
    background: #fff;
    height: 100%;
    width: 80%;
    max-width: 320px;
    padding: 40px 24px;
  }

  .nav__list {
    flex-direction: column;
    gap: 24px;
    align-items:initial;
  }

  .nav__list a {
    color: #111;
  }
}
/* ===================== FOOTER (ELEGANTE NEGRO) ===================== */

.footer {
  background: #000000;
  padding: clamp(48px, 6vw, 80px) 0 40px;
  color: #e5e5e5;
}

.footer__content {
  display: grid;
  gap: 26px;
}

/* TOP AREA */
.footer__top{
  display: grid;
  gap: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

/* Brand */
.footer__brand{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  height: 68px;
  width: auto;
  margin-bottom: 14px;
  display: block;
  filter: brightness(1.15);
}

.footer__text {
  max-width: 460px;
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.6;
}

/* Columns */
.footer__col{
  text-align: center;
}

.footer__heading{
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
}

/* Contact */
.footer__contact{
  display: grid;
  gap: 6px;
}

.footer__label{
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer__label i{
  font-size: 16px;
  line-height: 1;
  opacity: .95;
}

.footer__value{
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.footer__link{
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer__link:hover{
  text-decoration: underline;
}

/* Social (icons only) */
.footer__social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 6px;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.footer__social a i {
  font-size: 18px;
  color: #ffffff;
}

.footer__social a:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

.footer__social a:hover i {
  color: #000000;
}

/* Bottom */
.footer__bottom {
  padding-top: 18px;
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

.footer__bottom a {
  color: #ffffff;
}

.footer__links {
  margin-top: 6px;
  display: flex;
  gap: 18px;
  justify-content: center;
}

.footer__links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer__links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ===================== DESKTOP: 3 columnas tipo referencia ===================== */
@media (min-width: 900px){
  .footer__top{
    grid-template-columns: 1.35fr 1fr 1fr;
    align-items: start;
    gap: 44px;
    padding-bottom: 22px;
  }

  .footer__brand{
    align-items: flex-start;
    text-align: left;
  }

  .footer__text{
    max-width: 520px;
  }

  .footer__col{
    text-align: left;
  }

  .footer__label{
    justify-content: flex-start;
  }

  .footer__social{
    justify-content: flex-start;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 32px;
  }

  .footer__text {
    font-size: 14px;
  }

  .footer__social a {
    width: 36px;
    height: 36px;
  }

  .footer__logo {
    height: 52px;
  }

  .footer__value{
    font-size: 13.5px;
  }
}

/* === FIX PARA SHOPIFY (evitar contenedores raros) === */
.footer,
.footer__content {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

/* ===================== FIX ESPACIADO LATERAL FOOTER ===================== */

/* Contenedor principal con padding simétrico */
.footer .wrap{
  width: min(1200px, 100%);
  padding-left: clamp(20px, 6vw, 80px);
  padding-right: clamp(20px, 6vw, 80px);
  margin-left: auto;
  margin-right: auto;
}

/* Asegura que el grid no rompa el padding */
.footer__content{
  box-sizing: border-box;
}

/* ===================== FIX DEFINITIVO HOVER TELÉFONO & CORREO ===================== */

.footer__value a{
  color: #ffffff;
}

.footer__value a:hover,
.footer__value a:focus{
  color:rgb(214, 208, 176) !important;   /* fuerza contraste */
  opacity: 0.95;               /* micro feedback elegante */
  text-decoration: underline;
}




/* ===================== POLÍTICA DE PRIVACIDAD ===================== */
.privacy {
  background: #000;
  color: var(--text);
  padding: clamp(60px, 7vw, 100px) 0;
}

.privacy__content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy__title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 800;
  margin-bottom: 40px;
}

.privacy__subtitle {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 4vw, 30px);
  margin: 40px 0 18px;
  color: var(--brand);
}

.privacy p {
  text-align: justify;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy__content {
    padding: 45px 16px;
  }

  .privacy p {
    font-size: 15px;
  }
}



.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
}

.whatsapp-float__link {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #000000; /* Negro sólido premium */
  color: #ffffff;
  text-decoration: none;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.whatsapp-float__link:hover {
  background: #ffffff; /* Se invierte elegante */
  color: #000000;      /* Ícono negro sobre blanco */
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.25);
}

.whatsapp-float__link i {
  font-size: 26px;
  line-height: 1;
}

/* Responsive móvil */
@media (max-width: 768px) {
  .whatsapp-float {
    right: 1.1rem;
    bottom: 1.1rem;
  }

  .whatsapp-float__link {
    width: 52px;
    height: 52px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  }

  .whatsapp-float__link i {
    font-size: 24px;
  }
}
/* ================= VIDEO HERO ================= */
.mc-video-hero{
  position: relative;
  min-height: clamp(640px, 92vh, 980px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0b0b0b;
  color: #fff;
}

/* Videos */
.mc-video-hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  z-index: 0;
}

.mc-video-hero__video--mobile{ display: none; }

/* Overlay */
.mc-video-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,0,0,.22), transparent 55%),
    linear-gradient(
      180deg,
      rgba(0,0,0,.62) 0%,
      rgba(0,0,0,.45) 55%,
      rgba(0,0,0,.62) 100%
    );
  z-index: 1;
  padding-top: 80px;
}

/* Wrap */
.mc-video-hero__wrap{
  position: relative;
  z-index: 2;
  width: min(92%, var(--wrap, 1200px));
  margin-inline: auto;
}

/* Contenido centrado */
.mc-video-hero__content{
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(22px, 4vw, 46px) 0;
  display: grid;
  justify-items: center;
}

/* Textos */
.mc-video-hero__eyebrow{
  margin: 0 0 12px;
  font-size: 11.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  opacity: .8;
}

.mc-video-hero__title{
  margin: 0 0 14px;
  font-family: var(--font-heading, "Playfair Display", serif);
  font-weight: 500;
  letter-spacing: .01em;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.mc-video-hero__text{
  margin: 0 auto;
  max-width: 780px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.86);
  text-shadow: 0 18px 60px rgba(0,0,0,.5);
}

/* Flecha */
.mc-video-hero__arrow{
  margin: clamp(22px, 3vw, 34px) auto 0;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.mc-video-hero__arrowIcon{
  font-size: 18px;
  opacity: .95;
}

/* Hover */
@media (hover:hover){
  .mc-video-hero__arrow:hover{
    transform: translateY(2px);
    border-color: rgba(255,255,255,.75);
    background: rgba(0,0,0,.26);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px){
  .mc-video-hero{
    min-height: 86vh;
  }
  .mc-video-hero__title{
    font-size: clamp(30px, 9vw, 52px);
  }
}

/* Switch videos */
@media (max-width: 768px){
  .mc-video-hero__video--desktop{ display: none; }
  .mc-video-hero__video--mobile{ display: block; }
}

/* Mobile spacing */
@media (max-width: 640px){
  .mc-video-hero__content{
    padding: 34px 0 24px;
  }
  .mc-video-hero__text{
    font-size: 14px;
  }
  .mc-video-hero__arrow{
    width: 66px;
    height: 66px;
  }
}

/* Desktop full height */
@media (min-width: 769px){
  .mc-video-hero{
    min-height: 100vh;
    height: 100vh;
  }
}
/* ================= CONTACT SPLIT ================= */
.mc-contact-split{
  background: #efe6d9;
  color: #111;
}

.mc-contact-split__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: clamp(700px, 85vh, 980px);
}

/* IMAGEN GRANDE */
.mc-contact-split__left{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 60%;
}

/* CONTENIDO */
.mc-contact-split__right{
  display: flex;
  align-items: center;
  padding: clamp(36px, 5vw, 80px);
}

.mc-contact-split__inner{
  max-width: 560px;
}

.mc-contact-split__title{
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.2vw, 46px);
  margin: 0 0 5px;
}

.mc-contact-split__text{
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0,0,0,.75);
  margin-bottom: 22px;
}

/* SOCIAL */
.mc-contact-split__social{
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}

.mc-contact-split__icon{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,.25);
  transition: .3s ease;
}

.mc-contact-split__icon i{
  font-size: 18px;
  color: #111;
}

/* BOTONES */
.mc-contact-split__actions{
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.mc-contact-split__btn{
  padding: 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
  border: 1px solid rgba(0,0,0,.3);
  text-decoration: none;
}

.mc-contact-split__btn--primary{
  background: #111;
  color: #fff;
}

.mc-contact-split__btn--ghost{
  background: transparent;
  color: #111;
}

.mc-contact-split__meta{
  font-size: 13px;
  color: rgba(0,0,0,.7);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .mc-contact-split__grid{
    grid-template-columns: 1fr;
  }
  .mc-contact-split__left{
    min-height: 55vh;
    background-position: center 50%;
  }
}

@media (max-width: 640px){
  .mc-contact-split__inner,
  .mc-contact-split__title,
  .mc-contact-split__text,
  .mc-contact-split__meta{
    text-align: center;
  }

  .mc-contact-split__social{
    justify-content: center;
  }

  .mc-contact-split__btn{
    max-width: 320px;
    margin-inline: auto;
  }
}
