:root{
  --azul:#293040;
  --dorado:#B88A1F;
  --dorado-glow:#FFD86B;
}

/* RESET BÁSICO */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Segoe UI', sans-serif;
}

/* ================= HEADER ================= */
.header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:1000;

  background:rgba(5,5,5,0.12);
  backdrop-filter:blur(14px);

  box-shadow:
    0 2px 10px rgba(0,0,0,0.5),
    0 0 10px rgba(211,172,43,0.25),
    0 2px 0 rgba(211,172,43,0.6);
}

.header::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--dorado),transparent);
}

.header-inner{

   min-height:86px;
  width:100%;
  max-width:1500px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 20px;
}

/* =========================================================
   LOGO PREMIUM
========================================================= */

.logo-container{

  position:relative;

  display:inline-flex;

  align-items:center;
  justify-content:center;

  overflow:hidden;

  background:none;

  transition:0.45s ease;
}

/* ================= LOGO ================= */

.logo{

  height: 80px;
  width: auto;

  object-fit:contain;

  background:none;

  transition:0.45s ease;

  filter:
    brightness(1.30)
    contrast(1.06)
    saturate(1.15)
    drop-shadow(0 2px 6px rgba(0,0,0,0.35))
    drop-shadow(0 0 16px rgba(212,169,58,0.50))
    drop-shadow(0 0 30px rgba(255,216,107,0.22));
}

/* ================= HOVER ================= */

.logo-container:hover .logo{

  transform:translateY(-3px) scale(1.06);

  filter:
    brightness(1.42)
    contrast(1.08)
    saturate(1.25)
    drop-shadow(0 6px 14px rgba(0,0,0,0.45))
    drop-shadow(0 0 22px rgba(212,169,58,0.70))
    drop-shadow(0 0 42px rgba(255,216,107,0.45));
}

/* ================= CLICK ================= */

.logo:active{

  transform:scale(1.02);
}

/* ================= EFECTO BRILLO ================= */

.logo-container::after{

  content:"";

  position:absolute;

  top:0;
  left:-120%;

  width:60%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.38),
    transparent
  );

  transform:skewX(-25deg);

  transition:0.9s ease;

  pointer-events:none;
}

.logo-container:hover::after{

  left:160%;
}

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

.logo-text{

  font-weight:600;

  color:#D4A93A;

  letter-spacing:0.4px;

  transition:0.35s ease;

  text-shadow:
    0 2px 4px rgba(0,0,0,0.45),
    0 0 6px rgba(212,169,58,0.18);
}

/* HOVER TEXTO */

.logo-text:hover{

  text-shadow:
    0 3px 6px rgba(0,0,0,0.6),
    0 0 10px rgba(212,169,58,0.35);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .logo{

    height: 48px;
    width: auto;
  }
}

/* ================= NAV ================= */
.nav a{
  color:#fff;
  margin:0 10px;
  text-decoration:none;

  font-weight:600;
  font-size:15px; /* ⬅ más grande */

  position:relative;
  transition:all 0.3s ease;

  /* SOMBRA BASE 3D */
  text-shadow:
    0 2px 4px rgba(0,0,0,0.6),
    0 0 4px rgba(211,172,43,0.4);
}

/* EFECTO HOVER*/
.nav a:hover{
  color:#fff;

  transform:translateY(-2px) scale(1.05);

  text-shadow:
    0 3px 6px rgba(0,0,0,0.8),         /* profundidad */
    0 0 8px rgba(211,172,43,0.7),      /* dorado */
    0 0 18px rgba(255,216,107,0.6);    /* glow elegante */
}

/* EFECTO LÍNEA DORADA ANIMADA */
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;

  width:0%;
  height:2px;

  background:linear-gradient(
    90deg,
    transparent,
    #D3AC2B,
    #FFD86B,
    transparent
  );

  transition:0.4s ease;
}

.nav a:hover::after{
  width:100%;
}

/* ================= SLIDER ================= */
.hero{
  margin-bottom:0;
}

.premium-section{
  margin-top:0;
}

.porque{
  margin-top:0;
}

.premium-section::before{

  content:"";

  position:absolute;

  inset:0;

  background:
  radial-gradient(
    circle at top,
    rgba(212,169,58,0.05),
    transparent 60%
  );

  pointer-events:none;
}
/* ================= HERO ================= */

.hero{

  position:relative;

  width:100%;

  height:100vh;

  min-height:100vh;

  overflow:hidden;

  display:flex;

  align-items:center;

  justify-content:flex-start;

  padding-top:105px; /* espacio del header */

}

/* ================= SLIDES ================= */

.slide{

  position:absolute;

  inset:0;

  width:100%;

  height:100vh;

  background-size:cover;

  background-position:center center;

  background-repeat:no-repeat;

  opacity:0;

  transform:scale(1);

  transition:
    opacity 1.5s ease,
    transform 7s ease;
}

.slide.active{
  opacity:1;
  transform:scale(1.08);
  z-index:2;
}

/* ================= OVERLAY ================= */

.overlay{

  position:absolute;

  inset:0;

  width:100%;

  height:100%;

  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.05)
    ),

    linear-gradient(
      to bottom,
      rgba(0,0,0,0.05),
      rgba(0,0,0,0.30)
    );

  z-index:1;
}

/* ================= TITULO PREMIUM SLIDER ================= */

#titulo-slider{

  position:relative;

  width:100%;

  max-width:1350px;

  /* ↓↓↓ BAJA UN POCO EL TAMAÑO ↓↓↓ */
  font-size:clamp(30px,3.5vw,58px);

  font-weight:700;

  line-height:1.05;

  letter-spacing:-1.5px;

  color:#ffffff;

  text-align:left;

  white-space:normal;

  overflow-wrap:break-word;

  margin-bottom:28px;

  z-index:5;

  /* =====================================================
     SOMBRA PREMIUM DORADA
  ===================================================== */

  text-shadow:

    /* profundidad negra */
    0 3px 8px rgba(0,0,0,0.95),

    0 8px 22px rgba(0,0,0,0.78),

    /* glow dorado principal */
    0 0 8px rgba(212,169,58,0.55),

    0 0 18px rgba(212,169,58,0.45),

    0 0 34px rgba(255,216,107,0.32),

    /* brillo premium */
    0 0 55px rgba(255,216,107,0.18);

  transition:
    opacity .6s ease,
    transform .6s ease;
}

/* =====================================================
   LINEA DORADA
===================================================== */

#titulo-slider::after{

  content:"";

  position:absolute;

  left:0;

  bottom:-16px;

  width:200px;

  height:3px;

  border-radius:30px;

  background:
  linear-gradient(
    90deg,
    #D4A93A,
    #FFD86B,
    transparent
  );

  box-shadow:

    0 0 10px rgba(212,169,58,.45),

    0 0 24px rgba(255,216,107,.25);
}



#titulo-slider span{

  color:#ffe27a;

  text-shadow:

    0 0 10px rgba(255,226,122,0.65),

    0 0 24px rgba(212,169,58,0.45);

}


.encabezado-seccion{

  text-align:center;

  margin-bottom:65px;
}

.etiqueta-seccion{

  display:inline-block;

  padding:
  10px
  18px;

  border-radius:50px;

  background:
  rgba(201,150,26,0.12);

  color:#c9961a;

  font-size:13px;

  font-weight:700;

  letter-spacing:1.5px;

  margin-bottom:20px;
}

.titulo-seccion{

  font-size:
  clamp(34px,4vw,62px);

  font-weight:900;

  color:#111827;

  line-height:1.12;

  letter-spacing:-1px;

  margin-bottom:24px;

  max-width:1000px;

  margin-inline:auto;

  text-wrap:balance;
}

.subtitulo-seccion{

  max-width:850px;
  
  margin:auto;

  font-size:18px;

  line-height:1.9;

  color:#5b6472;
}

/* ================= RESPONSIVE ================= */
.contenido-global{

  position:absolute;

  left:5%;

  bottom:11%;

  width:90%;

  max-width:1500px;

  z-index:10;
}

/* ================= SERVICIOS ================= */
/* =========================================================
   SERVICIOS PREMIUM MIGRALAW
========================================================= */

.servicios{

  position:relative;

  padding:90px 20px;

  background:
    linear-gradient(
      180deg,
      #f5f6f8 0%,
      #eef1f5 100%
    );

  overflow:hidden;
}

/* EFECTO DE FONDO */

.servicios::before{

  content:"";

  position:absolute;

  top:-120px;
  right:-120px;

  width:320px;
  height:320px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(212,169,58,0.12),
      transparent 70%
    );

  filter:blur(20px);
}

.servicios::after{

  content:"";

  position:absolute;

  bottom:-120px;
  left:-120px;

  width:320px;
  height:320px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(41,48,64,0.10),
      transparent 70%
    );

  filter:blur(20px);
}

/* =========================================================
   CONTENEDOR
========================================================= */

.servicios-container{

  position:relative;

  z-index:2;

  max-width:1280px;

  margin:auto;

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

  gap:38px;

  align-items:stretch;
}

/* =========================================================
   SECCION PREMIUM SERVICIOS
========================================================= */

.premium-section{

  position:relative;

  width:100%;

  min-height:100vh;

  background:#f5f7fb;

  padding:
  90px
  30px
  70px;

  display:flex;

  flex-direction:column;

  justify-content:center;

  align-items:center;

  overflow:hidden;

  z-index:2;

  border-top:
  1px solid rgba(212,169,58,0.18);

  border-bottom:
  1px solid rgba(212,169,58,0.18);
}

/* =========================================================
   TITULO PRINCIPAL
========================================================= */
.section-title{

  text-align:center;

  font-size:clamp(30px,3vw,52px);

  font-weight:900;

  color:#111827;

  line-height:1.1;

  letter-spacing:-2px;

  max-width:1000px;

 margin-bottom:8px;

  position:relative;

  padding:0 20px;
}

/* LINEA DORADA */
.section-title::after{

  content:"";

  display:block;

  width:110px;

  height:4px;

  margin:16px auto 0;

  border-radius:50px;

  background:
  linear-gradient(
    90deg,
    transparent,
    #D4A93A,
    #FFD86B,
    transparent
  );

  box-shadow:
  0 0 14px rgba(212,169,58,0.30);
}

/* =========================================================
   SUBTITULO
========================================================= */
.section-subtitle{

  text-align:center;

  max-width:800px;

  margin:0 auto 8px;

  font-size:15px;

  line-height:1.8;

  color:#5b6472;

  padding:0 20px;
}

/* =========================================================
   CONTENEDOR TARJETAS
========================================================= */

.premium-cards{

  width:100%;

max-width:1200px;

margin:35px auto 0;

display:flex;

justify-content:center;

align-items:stretch;

gap:22px;

flex-wrap:wrap;

}



/* =========================================================
   EFECTO HOVER
========================================================= */

.premium-card:hover{

  transform:
  translateY(-14px)
  scale(1.03);

  box-shadow:
  0 25px 60px rgba(0,0,0,0.16);
}

/* =========================================================
   TARJETA OSCURA
========================================================= */

.dark-card{

  background:
  linear-gradient(
    135deg,
    #182033,
    #222d45
  );

  color:#fff;
}

/* =========================================================
   GLOW
========================================================= */

.card-glow{

  position:absolute;

  width:240px;
  height:240px;

  top:-90px;
  right:-90px;

  background:
  radial-gradient(
    circle,
    rgba(212,169,58,0.18),
    transparent 70%
  );

  opacity:0;

  transition:0.5s ease;
}

.premium-card:hover .card-glow{

  opacity:1;
}

/* =========================================================
   ICONO
========================================================= */


.icon-box i{

  font-size:34px;

  color:#1e2a44;
}

.gold{

  background:
  linear-gradient(
    135deg,
    #c9961a,
    #f4d06f
  );
}

.gold i{

  color:#fff;
}

.premium-card:hover .icon-box{

  transform:
  rotate(-5deg)
  scale(1.08);
}

/* =========================================================
   TITULOS
========================================================= */

.premium-card h2{

  font-size:24px;

  font-weight:900;

  line-height:1.1;

  margin-bottom:12px;
}

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

.premium-card p{

  font-size:15px;

  line-height:1.6;

  color:#5b6472;

  margin-bottom:22px;
}

.dark-card p{

  color:#f3f4f6;
}

/* =========================================================
   BOTON
========================================================= */

.btn-card span{

  transition:0.4s ease;
}

.btn-card:hover{

  background:
  linear-gradient(
    135deg,
    #c9961a,
    #f4d06f
  );

  color:#111827;

  transform:
  translateY(-4px);
}

.btn-card:hover span{

  transform:translateX(5px);
}

/* BOTON DORADO */

.dark-btn{

  background:
  linear-gradient(
    135deg,
    #c9961a,
    #f4d06f
  );

  color:#111827;
}

.dark-btn:hover{

  background:#ffffff;
}

.premium-card{

  position:relative;

  width:320px;

  min-height:430px;

  border-radius:30px;

  padding:26px 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.96),
      rgba(248,250,252,0.98)
    );

  border:1px solid rgba(212,169,58,0.10);

  overflow:hidden;

  transition:0.45s ease;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.08);

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:flex-start;

  text-align:center;

  backdrop-filter:blur(14px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:768px){

  .premium-section{

    padding:28px 18px 22px;
  }

  .premium-cards{

    gap:28px;
  }

 

  .premium-card h3{

    font-size:28px;
  }

  .premium-card p{

    font-size:15px;
  }

  .section-subtitle{

    font-size:16px;
  }
}

/* =========================================================
   ICONOS
========================================================= */

.card i{

  width:88px;
  height:88px;

  border-radius:24px;

  display:flex;

  align-items:center;
  justify-content:center;

  font-size:34px;

  margin-bottom:28px;

  background:
    linear-gradient(
      135deg,
      #f4f4f4,
      #ebedf0
    );

  color:#293040;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.08);

  transition:0.4s;
}

.card:hover i{

  transform:scale(1.08);
}

/* =========================================================
   TITULOS
========================================================= */

.card h3{

  font-size:34px;

  font-weight:800;

  line-height:1.2;

  margin-bottom:18px;

  color:#111;
}

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

.card p{

  font-size:17px;

  line-height:1.8;

  color:#4c5563;

  max-width:280px;

  margin-bottom:28px;
}

/* =========================================================
   TARJETA CENTRAL
========================================================= */

.destacado{

  background:

  linear-gradient(
    145deg,
    #0f172a 0%,
    #1c2950 100%
  );
}

.card.destacado h3,
.card.destacado p{

  color:#fff;
}

.card.destacado i{

  background:
    linear-gradient(
      135deg,
      #B88A1F,
      #D4A93A
    );

  color:#fff;
}

/* =========================================================
   BOTON VER MÁS
========================================================= */

.btn-card:hover{

  transform:
    translateY(-3px)
    scale(1.04);

  background:
    linear-gradient(
      135deg,
      #B88A1F,
      #D4A93A
    );

  color:#111;

  box-shadow:
    0 12px 25px rgba(212,169,58,0.35);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:768px){

  .servicios{

    padding:70px 18px;
  }

  .card{

    min-height:auto;

    padding:38px 25px;
  }

  .card h3{

    font-size:28px;
  }

  .card p{

    font-size:15px;
  }

  .card.destacado{

    transform:none;
  }
}

/* =========================================================
   CASOS EXITOSOS PREMIUM
========================================================= */
/* =========================================================
   FONDO PREMIUM CONTINUIDAD VISUAL
========================================================= */
.porque{

  position:relative;

  width:100%;

  padding:70px 30px 90px;

  overflow:hidden;

  background:

  radial-gradient(
    circle at top center,
    rgba(212,169,58,0.10),
    transparent 28%
  ),

  radial-gradient(
    circle at bottom left,
    rgba(30,42,68,0.14),
    transparent 30%
  ),

  linear-gradient(
    180deg,
    #f8fafc 0%,
    #eef2f7 50%,
    #e8edf5 100%
  );
}
/* =========================================================
   GLOW CENTRAL PREMIUM
========================================================= */

.porque::before{

  content:"";

  position:absolute;

  top:50%;
  left:50%;

  transform:
  translate(-50%,-50%);

  width:850px;
  height:850px;

  background:

  radial-gradient(
    circle,
    rgba(28,41,80,0.16) 0%,
    rgba(28,41,80,0.10) 25%,
    rgba(28,41,80,0.04) 45%,
    transparent 72%
  );

  filter:blur(60px);

  pointer-events:none;

  z-index:0;
}

/* =========================================================
   CONTENEDOR
========================================================= */

.porque-container{

  width:100%;

  max-width:1400px;

  margin:auto;

  display:flex;

  flex-direction:column;

  align-items:center;
}

/* =========================================================
   GRID
========================================================= */
.porque-grid{

 width:100%;

max-width:1200px;

margin:35px auto 0;

display:flex;

justify-content:center;

align-items:stretch;

gap:22px;

flex-wrap:wrap;
}

/* =========================================================
   TARJETAS
========================================================= */

.porque-card{

  width:360px;

  background:#ffffff;

  border-radius:32px;

  overflow:hidden;

  transition:0.45s ease;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.08);

  display:flex;

  flex-direction:column;
}

/* =========================================================
   HOVER
========================================================= */

.porque-card:hover{

  transform:
  translateY(-10px);

  box-shadow:
  0 35px 80px rgba(0,0,0,0.14);
}

/* =========================================================
   VIDEO
========================================================= */
/* =========================================================
   CONTENEDOR VIDEO
========================================================= */
.video-container{

  position:relative;
  isolation:isolate;

  width:100%;

  height:215px;

  overflow:hidden;

  border-radius:26px;

  background:#000;

  margin-bottom:10px;

  box-shadow:
    0 18px 35px rgba(0,0,0,0.20);
}

.video-container iframe{

  width:100%;
  height:100%;

  border:none;

  transform:scale(1.04);

  transition:0.6s ease;
}

.video-card:hover iframe{

   transform:none;
}

/* =========================================================
   IFRAME
========================================================= */

.video-container iframe{

  width:100%;
  height:100%;

  border:none;

  outline:none;

  display:block;
}


.porque-card:hover iframe{

  transform:scale(1.03);
}

/* =========================================================
   CONTENIDO
========================================================= */
.video-info{

  width:100%;

  display:flex;

  flex-direction:column;

  justify-content:space-between;

  align-items:center;

  flex:1;

  padding:14px 20px 20px;

  text-align:center;
}

.video-content{

  width:100%;
}

.video-title{

  width:100%;

  text-align:center;

  font-size:32px;

  font-weight:900;

  line-height:1.05;

  color:#111827;

  margin-top:2px;

  margin-bottom:12px;

  letter-spacing:-1px;

  text-wrap:balance;
}

.video-description{

  max-width:260px;

  margin:0 auto 18px;

  font-size:14px;

  line-height:1.6;

  color:#5b6472;

  text-align:center;
}

/* =========================================================
   BADGE
========================================================= */

.video-badge{
 
  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:10px 18px;

  border-radius:50px;

  background:
    linear-gradient(
      135deg,
      rgba(212,169,58,0.14),
      rgba(255,216,107,0.20)
    );

  color:#b88a1f;

  font-size:11px;

  font-weight:800;

  letter-spacing:1px;

  text-transform:uppercase;

  margin-bottom:1px;
}

.video-container::after{

  content:"";

  position:absolute;

  inset:0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.45),
      transparent 45%
    );

  pointer-events:none;
}

/* =========================================================
   TITULO
========================================================= */

.video-info h3{

  width:100%;

  text-align:center;

  font-size:45px;

  font-weight:900;

  line-height:1.02;

  color:#111827;

  margin-top:2px;

  margin-bottom:14px;

  letter-spacing:-2px;

  text-wrap:balance;
}

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

.video-info p{

  max-width:270px;

  margin:0 auto 24px;

  font-size:15px;

  line-height:1.7;

  color:#5b6472;

  text-align:center;
}

/* =========================================================
   BOTON
========================================================= */

.video-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:14px 26px;

  border-radius:50px;

  background:
    linear-gradient(
      135deg,
      #111827,
      #1e2a44
    );

  color:#fff;

  font-size:13px;

  font-weight:700;

  letter-spacing:.5px;

  text-decoration:none;

  transition:.4s ease;

  box-shadow:
    0 10px 24px rgba(0,0,0,.18);
}

.video-btn:hover{

  transform:
    translateY(-4px)
    scale(1.03);

  background:
    linear-gradient(
      135deg,
      #c9961a,
      #FFD86B
    );

  color:#111827;
}

.video-btn:hover{

  background:#c9961a;

  color:#111827;

  transform:translateY(-3px);
}

/* =====================================================
   CONTENEDOR CASOS EXITOSOS
===================================================== */

.casos-exito .cards-container{

    max-width:1320px;

    margin:0 auto;

    padding:0 20px;

    gap:28px;
}
/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:768px){

  .porque{

    padding:
      90px
      20px
      100px;
  }

  .porque-grid{

    gap:10px;
  }

  .porque-card{

    width:100%;

    max-width:280px;
  }

  .video-info{

    padding:24px;
  }

  .video-info h3{

    font-size:26px;
  }
}
/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

  .porque-grid{

    grid-template-columns:1fr;
  }

  .porque-card{

    min-height:auto;
  }

  .porque-card.destacado{

    transform:none;
  }
}

@media(max-width:768px){

  .video-container{
    margin-bottom:8px;
    aspect-ratio:16/9;
    height: 185px;
  }
}

/* ================= BOTÓN ================= */
.btn-reserva{
  background: linear-gradient(135deg, #D3AC2B, #FFD86B);
  color: #000;
  padding:10px 18px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
   font-size:13px;

  position: relative;
  overflow: hidden;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.4),
    0 0 10px rgba(211,172,43,0.4);

  transition: all 0.3s ease;
}

/* EFECTO HOVER */
.btn-reserva:hover{
 display:flex;
align-items:center;

  box-shadow:
    0 6px 15px rgba(0,0,0,0.6),
    0 0 15px rgba(211,172,43,0.7),
    0 0 25px rgba(255,216,107,0.6);
}

/* EFECTO BRILLO */
.btn-reserva::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );

  transition:0.6s;
}

.btn-reserva:hover::before{
  left:100%;
}


/* ANIMACIÓN */
@keyframes aparecer{
  from{ transform:scale(0.8); opacity:0; }
  to{ transform:scale(1); opacity:1; }
}

/* CERRAR */
.cerrar{
  position:absolute;
  right:20px;
  top:10px;
  font-size:25px;
  cursor:pointer;
}

/* FORMULARIO */
.formulario input,
.formulario textarea{
  width:100%;
  padding:10px;
  margin:10px 0;
  border-radius:8px;
  border:1px solid #ccc;
}

.btn-form{
  background:linear-gradient(135deg,#293040,#1f2633);
  color:#fff;
  padding:10px;
  border:none;
  border-radius:8px;
  width:100%;
  cursor:pointer;
}

.btn-form:hover{
  background:var(--dorado);
  color:#000;
}

/* ================= sombra en la lema ================= */
.contenido h1{
  font-size:48px;
  font-weight:700;
  color:#ffffff;

  /* EFECTO 3D DORADO */
  text-shadow:
    1px 1px 0 #caa52c,
    2px 2px 0 #b8962e,
    3px 3px 0 #a8841f,
    4px 4px 6px rgba(0,0,0,0.5),

    /* brillo dorado */
    0 0 10px rgba(211,172,43,0.7),
    0 0 20px rgba(255,216,107,0.6);
}

.contenido h1{
  margin-bottom: 30px; /* ⬅ espacio principal */
}


/* ================= TRANSPARENCIA IMAGEN ================= */
.slide::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.25); /* transparencia suave */
  z-index:1;
}

/* ================= ANIMACIÓN TEXTO ================= */
.slide .contenido{
  opacity:0;
  transform:translateY(40px);
  transition: all 0.8s ease;
}

.slide.active .contenido{
  opacity:1;
  transform:translateY(0);
}

/* ================= TEXTO MÁS INTEGRADO ================= */
.subtitulo{
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.35);
}

/* ================= EFECTO ZOOM PROFESIONAL ================= */

/* TEXTO GLOBAL SLIDER */


#subtitulo-slider{
  margin-top:10px;
  background: rgba(0,0,0,0.4);
  padding:10px 15px;
  border: radius 8px; 
}


/* =========================================================
   SERVICIOS
========================================================= */

.service-item{

  display:flex;

  gap:14px;

  margin-bottom:24px;
}

.service-item i{

  color:#D4A93A;

  font-size:22px;

  margin-top:5px;
}

.service-item strong{

  color:#fff;

  display:block;

  margin-bottom:4px;

  font-size:16px;
}

.service-item p{

  font-size:14px;
}

/* =========================================================
   CONTACTO
========================================================= */

.contact-item{

  display:flex;

  gap:12px;

  margin-bottom:18px;
}

.contact-item i{

  color:#D4A93A;

  font-size:18px;

  margin-top:5px;
}

.contact-item span{

  font-size:34px;
}
/* =========================================================
   SECCIÓN DE RESEÑAS (REVIEWS SECTION)
========================================================= */
.reviews-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #182030 0%, #080c12 100%);
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(212, 169, 58, 0.22);
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 169, 58, 0.08), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.reviews-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 2;
}

.reviews-section .section-title {
  color: #ffffff;
}

.reviews-section .section-subtitle {
  color: #a3b3c9;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.review-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.review-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 169, 58, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 169, 58, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 169, 58, 0.1);
}

.review-card:hover .review-card-glow {
  opacity: 1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.review-avatar {
  font-size: 42px;
  color: #ffd86b;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 169, 58, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(212, 169, 58, 0.2);
}

.review-meta h4 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.review-meta span {
  font-size: 13px;
  color: #a3b3c9;
  display: block;
}

.review-rating {
  margin-bottom: 15px;
  display: flex;
  gap: 4px;
}

.star-icon {
  color: #ffd86b;
  font-size: 15px;
  text-shadow: 0 0 8px rgba(255, 216, 107, 0.4);
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #d1d5db;
  font-style: italic;
  position: relative;
  flex-grow: 1;
}

.reviews-actions {
  text-align: center;
  margin-top: 20px;
}

.btn-dejar-resena {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #b88a1f 0%, #ffd86b 100%);
  color: #0c1017;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 20px rgba(212, 169, 58, 0.25);
}

.btn-dejar-resena:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(212, 169, 58, 0.45);
  background: linear-gradient(135deg, #ffd86b 0%, #b88a1f 100%);
}

.btn-dejar-resena:active {
  transform: translateY(-1px) scale(1);
}

/* =========================================================
   FORMULARIO DE RESEÑA (MODAL)
========================================================= */
.review-modal {
  background: linear-gradient(145deg, #0f141f, #070a10) !important;
  color: #ffffff;
  border: 1px solid rgba(212, 169, 58, 0.2);
  width: min(90vw, 550px) !important;
}

.review-modal h2 {
  color: #ffffff !important;
  font-size: 26px !important;
  font-weight: 700;
}

.review-modal .modal-subtitle {
  color: #a3b3c9;
  font-size: 14px;
  margin-top: 8px;
}

.review-form {
  margin-top: 25px;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #d1d5db;
  margin-bottom: 8px;
}

.form-group label .required {
  color: #ff6b6b;
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd86b;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(255, 216, 107, 0.15);
}

.form-group select option {
  background: #0c1017;
  color: #ffffff;
}

.star-rating-selector {
  display: flex;
  gap: 8px;
  font-size: 26px;
  cursor: pointer;
  user-select: none;
  padding: 5px 0;
}

.star-select {
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.star-select:hover,
.star-select.active {
  color: #ffd86b;
  text-shadow: 0 0 10px rgba(255, 216, 107, 0.5);
  transform: scale(1.15);
}

.btn-submit-review {
  background: linear-gradient(135deg, #b88a1f 0%, #ffd86b 100%);
  color: #0c1017 !important;
  font-weight: 700 !important;
  border: none;
  width: 100%;
  padding: 14px !important;
  border-radius: 10px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 169, 58, 0.3);
}

/* =========================================================
   FOOTER
========================================================= */

.footer{

position:relative;

background:
linear-gradient(
180deg,
#020202 0%,
#020202 50%,
#020202 100%
);

  overflow:hidden;

    padding-top:20px;

    padding-bottom:8px;

  color:#ffffff;


    border-top:
     1px solid rgba(212,169,58,.22);
}

/* =========================================================
   MAPA DECORATIVO
========================================================= */

.footer-map{

  position:absolute;

  inset:0;

  width:100%;
  height:100%;

  opacity:0.18;

  pointer-events:none;

  z-index:1;
}

.footer-map img{

  width:100%;
  height:100%;

  object-fit:cover;
}

/* =========================================================
   EFECTOS GLOW
========================================================= */

.footer-glow{

  position:absolute;

  border-radius:50%;

  filter:blur(90px);

  opacity:0.18;

  z-index:1;
}

.footer-glow-1{

  width:320px;
  height:320px;

  background:#d4a93a;

  top:-80px;
  left:-80px;
}

.footer-glow-2{

  width:280px;
  height:280px;

  background:#1e2a44;

  bottom:-60px;
  right:-60px;
}

/* =========================================================
   CONTENEDOR PRINCIPAL
========================================================= */

.footer-container{

  position:relative;

  z-index:2;

  max-width:1600px;

  margin:auto;

  padding:0 70px 10px;

  display:grid;

  grid-template-columns:

  1.5fr
  1fr
  1.4fr
  1.2fr;

  gap:55px;

  align-items:flex-start;
}

/* =========================================================
   LOGO
========================================================= */

.footer-logo{

    width:140px;

    margin-bottom:18px;

    object-fit:contain;

    filter:
    drop-shadow(0 6px 14px rgba(0,0,0,.55))
    drop-shadow(0 0 12px rgba(212,169,58,.25));

    transition:.4s ease;
}

.footer-logo:hover{

    transform:scale(1.03);

    filter:
    drop-shadow(0 8px 18px rgba(0,0,0,.7))
    drop-shadow(0 0 18px rgba(212,169,58,.35));
}

/* =========================================================
   TITULO MARCA
========================================================= */

.footer-brand h2{

  font-size:20px;

  font-weight:800;

  line-height:1.1;

  margin-bottom:12px;

  color:#ffffff;
}

.footer-brand h2 span{

  color:#D4A93A;
}

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

.footer-brand p{

  color:#cbd5e1;

  line-height:1.8;

  font-size:15px;

  margin-bottom:25px;

  max-width:420px;
}

.footer-services{

    padding-top:8px;
}

/* =========================================================
   TITULOS COLUMNAS
========================================================= */
.footer-links h3,
.footer-services h3,
.footer-contact h3{

  font-size:18px;

  font-weight:700;

  margin-bottom:26px;

  color:#ffffff;

  position:relative;

  line-height:1.15;

  letter-spacing:-0.3px;

  min-height:48px;

  display:flex;

  align-items:flex-end;
}

.footer-links,
.footer-services,
.footer-contact{

    padding-top:12px;
}

/* =========================================================
   LINEA TITULOS
========================================================= */

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-10px;

  width:42px;
  height:2px;

  border-radius:10px;

  background:
  linear-gradient(
    90deg,
    #D4A93A,
    transparent
  );
}

/* =========================================================
   LINKS
========================================================= */

.footer-links ul{

  list-style:none;
}

.footer-links li{

  margin-bottom:14px;
}

.footer-links a{

  color:#e5e7eb;

  text-decoration:none;

  font-size:17px;

  line-height:2.1;

  transition:0.35s ease;

  font-weight:500;
}

.footer-links a:hover{

  color:#FFD86B;

  padding-left:6px;
}

/* =========================================================
   BADGES
========================================================= */

/* =========================================================
   BADGES PREMIUM FOOTER
========================================================= */
.footer-badges{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    width:100%;

    max-width:620px;

    margin-top:22px;

    border-radius:28px;

    overflow:hidden;

    background:
    linear-gradient(
        145deg,
        rgba(12,12,12,0.96),
        rgba(22,22,22,0.94)
    );

    border:
    1px solid rgba(212,169,58,0.22);

    backdrop-filter:blur(10px);

    box-shadow:
    0 12px 28px rgba(0,0,0,0.30);
}
/* =========================================================
   ITEM
========================================================= */

.badge{

    position:relative;

    min-height:64px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:8px 6px;

    gap:5px;
}



/* LINEA DIVISORA */

.badge:not(:last-child)::after{

    content:"";

    position:absolute;

    top:18%;
    right:0;

    width:1px;
    height:64%;

    background:
    linear-gradient(
        to bottom,
        transparent,
        rgba(212,169,58,0.20),
        transparent
    );
}

/* =========================================================
   ICONOS
========================================================= */

.badge i{

    font-size:20px;

    color:#D4A93A;

    flex-shrink:0;

    margin-bottom:0cqmin;
}


.footer-brand{

    padding-right:15px;
}
/* =========================================================
   TEXTO
========================================================= */
.badge span{

    font-size:10px;

    line-height:1.3;

    color:#f5f5f5;

    font-weight:600;

    width:100%;

    max-width:120px;

    white-space:normal;

    word-break:keep-all;
}

/* =========================================================
   HOVER
========================================================= */

.badge:hover{

    background:
     rgba(255,255,255,0.03);
}

.badge:hover i{

    transform:
    scale(1.08);

    color:#FFD86B;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:768px){

    .footer-badges{

        grid-template-columns:
        repeat(2,1fr);

        max-width:100%;
    }

    .badge{

        min-height:110px;
    }

    .badge:nth-child(2)::after{

        display:none;
    }

    .badge span{

        font-size:13px;
    }

    .badge i{

        font-size:26px;
    }
}

/* =========================================================
   SERVICIOS
========================================================= */

.service-item{

  display:flex;

  align-items:flex-start;

  gap:14px;

  margin-bottom:1cqw;
}

.service-item i{

  width:40px;
  height:40px;

  border-radius:14px;

  background:
  linear-gradient(
    135deg,
    #D4A93A,
    #FFD86B
  );

  color:#111827;

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:18px;

  flex-shrink:0;
}

.service-item strong{

  display:block;

  margin-bottom:5px;

  font-size:15px;

  color:#ffffff;
}

.service-item p{

  color:#cbd5e1;

  font-size:14px;

  line-height:1.6;
}

/* =========================================================
   CONTACTO
========================================================= */

.footer-contact ul{

  list-style:none;
}

.footer-contact li{

  display:flex;

  align-items:center;

  gap:12px;

  margin-bottom:10px;

  color:#cbd5e1;

  font-size:15px;

  line-height:1.5;
}

.footer-contact li i{

  color:#FFD86B;

  font-size:15px;

  min-width:18px;
}

/* =========================================================
   REDES SOCIALES
========================================================= */

.footer-social{

  display:flex;

  gap:14px;

  margin-top:26px;
}

.footer-social a{

  width:44px;
  height:44px;

  border-radius:50%;

  background:
  rgba(255,255,255,0.08);

  color:#ffffff;

  display:flex;

  align-items:center;

  justify-content:center;

  text-decoration:none;

  transition:0.4s ease;

  border:
  1px solid rgba(255,255,255,0.06);
}

.footer-social a:hover{

  transform:
  translateY(-5px)
  scale(1.05);

  background:
  linear-gradient(
    135deg,
    #D4A93A,
    #FFD86B
  );

  color:#111827;

  box-shadow:
  0 12px 24px rgba(212,169,58,0.25);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom{

  position:relative;

  z-index:2;

  border-top:
  1px solid rgba(255,255,255,0.08);

  padding:24px 20px;

  text-align:center;

  color:#94a3b8;

  font-size:14px;
}

.footer-btn{

  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:18px 38px;

  border-radius:60px;

  background:
  linear-gradient(
    135deg,
    #D4A93A,
    #FFD86B
  );

  color:#111827;

  font-weight:800;

  text-decoration:none;

  font-size:15px;

  transition:.4s ease;

  box-shadow:
  0 15px 35px rgba(212,169,58,.28);
}

.footer-btn:hover{

  transform:
  translateY(-4px)
  scale(1.03);

  box-shadow:
  0 22px 45px rgba(212,169,58,.38);

  background:
  linear-gradient(
    135deg,
    #FFD86B,
    #D4A93A
  );
}




.footer-frase{

    color:#ffffff;

    font-size:15px;

    font-style:italic;

    font-weight:500;

    text-align:center;

    letter-spacing:.3px;
    margin-bottom:12px;

    text-shadow:
    0 0 10px rgba(255,255,255,.08);
}

.footer-frase span{

  color:#D4A93A;

  font-size:22px;
}

.footer-social-bottom{

  display:flex;

  justify-content:center;

  gap:18px;

  margin-bottom:28px;
}

.footer-social-bottom a{

  width:36px;
  height:36px;

  border-radius:50%;

  border:
  1px solid rgba(212,169,58,.25);

  display:flex;

  align-items:center;
  justify-content:center;

  color:#fff;

  text-decoration:none;

  font-size:14px;

  background:
  rgba(255,255,255,.04);

  transition:.45s ease;

  backdrop-filter:blur(8px);
}

.footer-social-bottom a:hover{

  transform:
  translateY(-5px)
  scale(1.08);

  background:
  linear-gradient(
    135deg,
    #D4A93A,
    #FFD86B
  );

  color:#111827;

  box-shadow:
  0 15px 30px rgba(212,169,58,.35);
}

.footer-copy{

  color:#94a3b8;

  font-size:11px;
  margin-top:-6px;

  letter-spacing:.4px;
}



.footer::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        90deg,
        rgba(212,169,58,0.04),
        transparent 25%,
        transparent 75%,
        rgba(212,169,58,0.04)
    );

    pointer-events:none;

    z-index:1;
}

/* =========================================================
   FOOTER FRASE PREMIUM
========================================================= */

.footer-extra{

    position:relative;

    z-index:2;

    width:100%;

    max-width:1200px;

    margin:auto;

    padding:12px 20px 6px;

    text-align:center;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;
}

.footer::before{

    content:"";

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:100%;

    height:2px;

    background:
    linear-gradient(
        90deg,
        transparent 0%,
        rgba(212,169,58,.18) 15%,
        #D4A93A 50%,
        rgba(212,169,58,.18) 85%,
        transparent 100%
    );

    box-shadow:
    0 0 10px rgba(212,169,58,.35),
    0 0 24px rgba(212,169,58,.12);

    z-index:5;
}

/* =========================================================
   LINEA SUPERIOR PREMIUM
========================================================= */

.footer-divider{

    position:relative;

    width:100%;

    max-width:1050px;

    height:1px;

    margin-bottom:4px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(212,169,58,0.15),
        rgba(212,169,58,0.35),
        rgba(212,169,58,0.15),
        transparent
    );
}

/* GLOW CENTRAL */

.footer-divider::before{

    content:"";

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:180px;
    height:3px;
    filter:blur(.2px);

    border-radius:20px;

    background:
    linear-gradient(
        90deg,
        transparent,
        #D4A93A,
        #FFD86B,
        #D4A93A,
        transparent
    );

    box-shadow:
    0 0 12px rgba(212,169,58,.45),
    0 0 28px rgba(212,169,58,.18);
}

/* =========================================================
   FRASE
========================================================= */


.footer-frase span{

    color:#FFD86B;

    font-size:22px;

    margin:0 6px;
}

/* =========================================================
   COPYRIGHT
========================================================= */

.footer-copy{

    position:relative;

    color:#cbd5e1;

    font-size:12px;

    letter-spacing:.4px;

    text-align:center;

    padding-top:18px;
}

/* LINEA INFERIOR */

.footer-copy::before{

    content:"";

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:140px;
    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(212,169,58,.35),
        transparent
    );
}

/* =========================================================
   REDES CENTRADAS PREMIUM
========================================================= */

.footer-social-center{

    display:flex;

    justify-content:center;
      margin-top:16px;

    align-items:center;

    gap:18px;

    margin-bottom:18px;

    position:relative;
}

/* LINEA DORADA DETRAS */

.footer-social-center::before{

    content:"";

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:220px;
    height:3px;

    border-radius:30px;

    background:
    linear-gradient(
        90deg,
        transparent,
        #D4A93A,
        #FFD86B,
        #D4A93A,
        transparent
    );

    opacity:.85;

    filter:blur(1px);

    z-index:0;

    box-shadow:
    0 0 12px rgba(212,169,58,.35),
    0 0 30px rgba(212,169,58,.18);
}

/* ICONOS */

.footer-social-center a{

    position:relative;

    z-index:2;

    width:42px;
    height:42px;

    border-radius:50%;

    background:
    rgba(20,20,20,.92);

    border:
    1px solid rgba(255,255,255,.06);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    font-size:16px;

    text-decoration:none;

    transition:.45s ease;

    backdrop-filter:blur(8px);

    box-shadow:
    0 8px 20px rgba(0,0,0,.35);
}

/* HOVER */

.footer-social-center a:hover{

    transform:
    translateY(-6px)
    scale(1.08);

    background:
    linear-gradient(
        135deg,
        #D4A93A,
        #FFD86B
    );

    color:#111827;

    box-shadow:
    0 12px 24px rgba(212,169,58,.35);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

  .footer-container{

    grid-template-columns:
    repeat(2,1fr);
  }
}

@media(max-width:768px){

  .footer{

    padding-top:70px;
  }

  .footer-container{

    grid-template-columns:1fr;

    gap:40px;

    padding:0 20px 50px;
  }

  .footer-brand,
  .footer-links,
  .footer-services,
  .footer-contact{

    text-align:center;
    padding-left:10px;
  }

  .footer-brand p{

    margin:auto auto 25px;
  }

  .footer-links h3::after,
  .footer-services h3::after,
  .footer-contact h3::after{

    left:50%;

    transform:translateX(-50%);
  }

  .footer-social{

    justify-content:center;
  }

  .footer-contact li{

    justify-content:center;
  }

  .service-item{

    justify-content:center;

    text-align:left;
  }

  .footer-badges{

    justify-content:center;
  }
}

/* =========================================================
   VIDEO CARDS PREMIUM
========================================================= */
.video-card{

  position:relative;

  width:320px;

  min-height:430px;

  border-radius:30px;

  padding:18px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.96),
      rgba(248,250,252,0.98)
    );

  border:1px solid rgba(212,169,58,0.10);

  overflow:hidden;

  transition:0.45s ease;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.08);

  display:flex;

  flex-direction:column;

  align-items:center;

  text-align:center;

  backdrop-filter:blur(14px);
}

.video-card::before{

  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #D4A93A,
      #FFD86B,
      transparent
    );

  opacity:.9;
}

.video-card:hover{

  transform:
    translateY(-10px)
    scale(1.015);

  box-shadow:
    0 35px 80px rgba(0,0,0,.14);

  border-color:
    rgba(212,169,58,0.22);
}

.video-card::after{

  content:"";

  position:absolute;

  top:0;
  left:50%;

  transform:translateX(-50%);

  width:120px;
  height:4px;

  border-radius:50px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #D4A93A,
      #FFD86B,
      transparent
    );

  box-shadow:
    0 0 14px rgba(212,169,58,0.35);
}


.video-container::before{

  content:"";

  position:absolute;

  inset:0;

  border-radius:28px;

  pointer-events:none;

  z-index:0;
}


/* IFRAME */

.video-container iframe{

  width:100%;
  height:100%;

  border:none;

  display:block;

  position:relative;

  z-index:3;

  pointer-events:auto;
}

/* HOVER */

.video-card:hover .video-container{

  transform:scale(1.02);

  box-shadow:
    0 15px 30px rgba(0,0,0,0.35),
    0 0 18px rgba(212,169,58,0.22);
}

/* TITULOS */

.video-card h3{

  margin-top:10px;

  margin-bottom:12px;
}

/* TEXTO */

.video-card p{

   line-height:1.6;
}
/* =========================================================
   TARJETA PREMIUM MEJORADA
========================================================= */

.premium-card{

  position:relative;

  width:300px;

  min-height:430px;

  background:#ffffff;

  border-radius:26px;

  padding:30px 24px;

  overflow:hidden;

  transition:0.5s ease;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

  cursor:pointer;

  text-align:center;

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:flex-start;
}




/* EFECTO HOVER */

.premium-card:hover{

  transform:translateY(-6px);

  box-shadow:
  0 25px 60px rgba(0,0,0,0.15);
}


/* BRILLO */

.card-glow{

  position:absolute;

  width:220px;
  height:220px;

  background:
  radial-gradient(circle,
  rgba(212,169,58,0.18),
  transparent 70%);

  top:-80px;
  right:-80px;

  opacity:0;

  transition:0.6s;
}

.premium-card:hover .card-glow{

  opacity:1;
}


/* TARJETA OSCURA */

.dark-card{

  background:
  linear-gradient(135deg,#182033,#222d45);

  color:#fff;
}


/* =========================================================
   ICONOS
========================================================= */

/* =========================================================
   ICONO
========================================================= */

.icon-box{

  width:72px;
  height:72px;

  margin-bottom:24px;

  border-radius:22px;

  background:#f3f4f6;

  display:flex;

  justify-content:center;
  align-items:center;

  transition:0.4s ease;

  margin-top:10px;
}

.icon-box i{

  font-size:32px;

  color:#1e2a44;
}

.gold{

  background:#c9961a;
}

.gold i{

  color:#fff;
}


/* HOVER ICON */

.premium-card:hover .icon-box{

  transform:
  rotate(-5deg)
  scale(1.08);
}


/* =========================================================
   TEXTOS
========================================================= */

.premium-card h3{

  font-size:32px;

  font-weight:900;

  line-height:1.05;

  margin-bottom:18px;

  margin-top:0;
  letter-spacing:-1px;
}

.premium-card p{

  font-size:15px;

  line-height:1.7;

  color:#555;

  margin-bottom:28px;

  max-width:240px;
}

.dark-card p{

  color:#f3f3f3;
}


/* =========================================================
   BOTON
========================================================= */

.btn-card{

  display:inline-flex;
  align-items:center;
  gap:10px;

  border:none;

  padding:10px 16px;

  border-radius:50px;

  background:#111827;

  color:#fff;

  font-size:12px;
  font-weight:700;

  cursor:pointer;

  transition:0.4s;
  margin-top:auto;
}

.btn-card span{

  transition:0.4s;
}

.btn-card:hover{

  background:#c9961a;

  transform:translateY(-3px);
}

.btn-card:hover span{

  transform:translateX(5px);
}


/* BOTON OSCURO */

.dark-btn{

  background:#c9961a;
}

.dark-btn:hover{

  background:#fff;
  color:#111827;
}


/* =========================================================
   MODAL
========================================================= */

.modal-overlay{

  position:fixed;

  inset:0;

  background:rgba(0,0,0,0.75);

  backdrop-filter:blur(10px);

  display:flex;
  justify-content:center;
  align-items:center;

  opacity:0;
  visibility:hidden;

  transition:0.5s;

  z-index:9999;
}


/* ACTIVO */

.modal-overlay.active{

  opacity:1;
  visibility:visible;
}


/* =========================================================
   CAJA MODAL
========================================================= */
.premium-modal{

  position:relative;

  width:min(90vw,760px);

  height:auto;

  max-height:90vh;

  overflow-y:auto;

  overflow-x:hidden;

  background:
  linear-gradient(
    145deg,
    #ffffff,
    #f7f8fb
  );

  border-radius:30px;

  padding:
  clamp(20px,2vw,30px);

  text-align:center;

  transform:
  translateY(20px)
  scale(0.94);

  opacity:0;

  transition:0.45s ease;

  box-shadow:
  0 25px 60px rgba(0,0,0,0.35);

  scrollbar-width:none;

  display:flex;

  flex-direction:column;

  justify-content:flex-start;
}


/* ACTIVO */

.modal-overlay.active .premium-modal{

  transform:
  translateY(0)
  scale(1);

  opacity:1;
}

/* =========================================================
   ICONO
========================================================= */


.modal-icon{

  width:110px;
  height:110px;

  border-radius:30px;

  margin:0 auto 24px;

  display:flex;
  justify-content:center;
  align-items:center;
}

.modal-content h2{

  font-size:clamp(34px,3vw,58px);

  margin-bottom:20px;

  line-height:1.1;
}

.modal-content p{

  font-size:18px;

  line-height:1.8;

  margin-bottom:28px;
}

.modal-feature{

  padding:18px 20px;

  border-radius:22px;

  margin-bottom:16px;
}

.modal-feature-icon{

  width:56px;
  height:56px;

  border-radius:18px;

  margin-right:18px;
}

/* =========================================================
   TITULO
========================================================= */

.premium-modal h2{

  font-size:
  clamp(30px,2.4vw,50px);

  font-weight:900;

  color:#111827;

  margin-bottom:10px;

  line-height:1.1;
}

/* =========================================================
   LINEA
========================================================= */

.modal-divider{

  width:60px;
  height:3px;

  background:#c9961a;

  margin:0 auto 22px;

  border-radius:20px;
}

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

.modal-intro,
.modal-texto{

  font-size:17px;

  line-height:1.8;

  color:#4b5563;

  max-width:700px;

  margin:
  0 auto
  22px;
}

/* =========================================================
   ITEMS
========================================================= */

.regularizacion-items{

  display:flex;

  flex-direction:column;

  gap:12px;

  margin-top:18px;
}

/* =========================================================
   ITEM
========================================================= */

.item-regularizacion:hover{

  transform:translateY(-2px);

  box-shadow:
  0 8px 20px rgba(0,0,0,0.08);
}

/* =========================================================
   ICONO ITEM
========================================================= */

.item-icon i{

  color:#fff;

  font-size:22px;
}

/* =========================================================
   CONTENIDO ITEM
========================================================= */

.item-content{

  text-align:left;
}


.item-content p{

  font-size:14px;

  line-height:1.5;

  color:#6b7280;

  margin:0;
}

/* =========================================================
   BOTON
========================================================= */

.modal-buttons{

  margin-top:22px;
}

.btn-modal{

  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:14px 30px;

  border-radius:50px;

  background:
  linear-gradient(
    135deg,
    #111827,
    #1f2937
  );

  color:#fff;

  text-decoration:none;

  font-size:15px;

  font-weight:700;

  transition:0.35s ease;
}

.btn-modal:hover{

  background:
  linear-gradient(
    135deg,
    #c9961a,
    #f4d06f
  );

  color:#111827;

  transform:translateY(-3px);
}

/* =========================================================
   BOTON CERRAR
========================================================= */

.cerrar-modal{

  position:absolute;

  top:16px;
  right:16px;

  width:38px;
  height:38px;

  border:none;

  border-radius:50%;

  background:#f3f4f6;

  font-size:24px;

  cursor:pointer;

  transition:0.35s ease;
}

.cerrar-modal:hover{

  background:#c9961a;

  color:#fff;

  transform:rotate(180deg);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:768px){

  .premium-modal{

    width:94vw;

    padding:22px 18px;

    max-height:94vh;
  }

  .premium-modal h2{

    font-size:32px;
  }

  .modal-intro{

    font-size:15px;

    line-height:1.7;
  }

  .item-regularizacion{

    padding:12px;
  }

  .item-content h4{

    font-size:15px;
  }

  .item-content p{

    font-size:13px;
  }
}
/* =========================================================
   MODAL RESPONSIVE PREMIUM
========================================================= */

.premium-modal::-webkit-scrollbar{

  width:0;
  height:0;
}



/* LINEA SUPERIOR */

.modal-top-line{

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:6px;

  background:
  linear-gradient(to right,
  #c9961a,
  #f4d06f,
  #c9961a);
}


/* ICONO */

/* =========================================================
   ICONO MODAL PREMIUM
========================================================= */

.modal-icon{

 

  min-width:110px;
  min-height:110px;

  aspect-ratio:1 / 1;

  margin:
  0 auto
  34px;

  border-radius:30px;

  background:
  linear-gradient(
  135deg,
  #c9961a,
  #f4d06f
  );

  display:flex;

  justify-content:center;
  align-items:center;

  position:relative;

  overflow:hidden;

  box-shadow:
  0 14px 34px rgba(201,150,26,0.28);

  animation:
  floatIcon 3.5s ease-in-out infinite;

  transition:0.4s ease;

  flex-shrink:0;
}

/* =========================================================
   ICONO GENERAL
========================================================= */

.modal-icon i{

  font-size:50px;

  color:#fff;

  position:relative;

  z-index:2;

  display:flex;

  justify-content:center;
  align-items:center;

  line-height:1;

  filter:
  drop-shadow(
  0 4px 8px rgba(0,0,0,0.18)
  );
}

/* =========================================================
   AJUSTE BALANZA
========================================================= */

.modal-icon .fa-scale-balanced{

  font-size:44px;

  transform:
  scale(0.92);

  position:relative;

  left:1px;
}



/* DIVISOR */

.modal-divider{

  width:90px;
  height:4px;

  background:#c9961a;

  margin:0 auto 35px;

  border-radius:10px;
}


/* TEXTO */

.premium-modal p{

  font-size:22px;

  line-height:2;

  color:#444;

  margin-bottom:45px;

  animation:fadeText 1.5s ease;
}


/* BOTON MODAL */

.btn-modal{

  display:inline-block;

  padding:16px 34px;

  border-radius:60px;

  background:
  linear-gradient(135deg,#111827,#1e2a44);

  color:#fff;

  text-decoration:none;

  font-weight:700;

  font-size:18px;
  letter-spacing:.3px;
  transition:0.4s;
}

.btn-modal:hover{

  transform:
  translateY(-4px)
  scale(1.03);

  background:
  linear-gradient(135deg,#c9961a,#e5b93d);

  color:#111;
}

.modal-intro,
.modal-texto{

  font-size:
  clamp(14px,1.1vw,18px);

  line-height:1.9;

  color:#4b5563;

  width:min(100%,720px);

  margin:
  0 auto
  24px;
}

/* CERRAR */

.cerrar-modal{

  position:absolute;

  top:22px;
  right:25px;

  width:45px;
  height:45px;

  border:none;

  border-radius:50%;

  background:#f3f4f6;

  font-size:28px;

  cursor:pointer;

  transition:0.3s;
}

.cerrar-modal:hover{

  background:#c9961a;

  color:#fff;

  transform:rotate(180deg);
}

.regularizacion-items{

  display:flex;

  flex-direction:column;

  gap:14px;

  margin-top:20px;

  width:100%;
}

/* =========================================================
   ITEM PREMIUM REGULARIZACION
========================================================= */

.item-regularizacion{

  display:flex;

  align-items:center;

  gap:20px;

  width:100%;

  padding:
  22px
  24px;

  border-radius:26px;

  background:
  linear-gradient(
  145deg,
  #f7f7f9,
  #ffffff
  );

  border:
  1px solid rgba(0,0,0,0.03);

  box-shadow:
  0 6px 18px rgba(0,0,0,0.04);

  transition:0.4s ease;

  text-align:left;

  overflow:hidden;

  position:relative;
}

.item-regularizacion::before{

  content:"";

  position:absolute;

  top:0;
  left:0;

  width:5px;
  height:100%;

  background:
  linear-gradient(
  to bottom,
  #c9961a,
  #f4d06f
  );

  opacity:0;

  transition:0.35s ease;
}

.item-regularizacion:hover{

  transform:
  translateY(-5px)
  scale(1.01);

  box-shadow:
  0 16px 34px rgba(0,0,0,0.08);

}

/* =========================================================
   ICONO ITEM
========================================================= */
.item-icon{

  min-width:66px;
  height:66px;

  border-radius:20px;

  background:
  linear-gradient(
  135deg,
  #c9961a,
  #f4d06f
  );

  display:flex;

  justify-content:center;
  align-items:center;

  box-shadow:
  0 10px 22px rgba(201,150,26,0.22);

  transition:0.35s ease;
}

.item-regularizacion:hover .item-icon{

  transform:
  rotate(-5deg)
  scale(1.08);

  box-shadow:
  0 14px 28px rgba(201,150,26,0.28);
}

.item-icon i{

  font-size:24px;

  color:#fff;
}


.item-content h4{

  font-size:
  clamp(18px,1.2vw,22px);

  font-weight:900;

  color:#111827;

  margin-bottom:6px;

  line-height:1.2;
}

.item-content p{

  font-size:
  clamp(14px,1vw,16px);

  line-height:1.75;

  color:#5b6472;

  margin:0;
}
/* HOVER */

.item-regularizacion:hover .item-icon{

  transform:
  rotate(-5deg)
  scale(1.08);

  box-shadow:
  0 14px 28px rgba(201,150,26,0.28);
}

.item-icon i{

  font-size:24px;

  color:#fff;
}

/* =========================================================
   ANIMACIONES
========================================================= */

@keyframes floatIcon{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-10px);
  }

  100%{
    transform:translateY(0px);
  }
}


@keyframes fadeText{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

  /* =========================================================
   MODAL RESPONSIVE PREMIUM
========================================================= */
@media (max-height:900px){

  .hero{
    min-height:60vh;
  }

  .premium-section{
   min-height:auto;
  }

  .porque{
    padding:25px 16px;
  }

   .video-card{
    min-height:160px;
  }

  .video-container{
    height:170px;
  }

  .section-title{
    font-size:32px;
  }

  .modal-content{
    transform:scale(0.90);
    transform-origin:center;
  }

}

@media(max-width:1400px){

  .section-title{

    font-size:clamp(28px,4vw,46px);
  }

  .video-title,
  .premium-card h3{

    font-size:28px;
  }

  .premium-card,
  .video-card{

    width:300px;
  }
}

@media(max-width:768px){

  .section-title{

    font-size:34px;

    line-height:1.15;
  }

  .section-subtitle{

    font-size:14px;

    line-height:1.6;
  }

  .premium-card,
  .video-card{

    width:100%;

    max-width:340px;

    min-height:auto;
  }

  .video-title,
  .premium-card h3{

    font-size:26px;
  }
}
@media(max-width:768px){

    .footer-badges{

        grid-template-columns:
        repeat(2,1fr);

        max-width:100%;
    }

    .badge{

        min-height:120px;
    }

    .badge:nth-child(2)::after{

        display:none;
    }

    .badge span{

        font-size:13px;
    }

    .badge i{

        font-size:28px;
    }
}

/* =========================================================
   AJUSTE SOLO PARA CASOS EXITOSOS
========================================================= */

#porque .video-card{

    width:320px;

    min-height:340px;

    padding:14px;

    border-radius:26px;
}

/* =========================================================
   VIDEO
========================================================= */

#porque .video-container{

    height:165px;

    margin-bottom:8px;

    border-radius:22px;
}

/* =========================================================
   CONTENIDO
========================================================= */

#porque .video-info{

    padding:8px 14px 14px;
}

/* =========================================================
   BADGE
========================================================= */

#porque .video-badge{

    padding:7px 14px;

    font-size:10px;

    margin-bottom:6px;
}

/* =========================================================
   TITULO
========================================================= */

#porque .video-title{

    font-size:18px;

    line-height:1.15;

    letter-spacing:-0.5px;

    margin-bottom:8px;

    min-height:auto;
}

/* =========================================================
   DESCRIPCION
========================================================= */

#porque .video-description{

    font-size:13px;

    line-height:1.45;

    margin-bottom:14px;

    max-width:240px;

    min-height:auto;
}

/* =========================================================
   BOTON
========================================================= */

#porque .video-btn{

    padding:11px 22px;

    font-size:12px;

    margin-top:6px;
}

/* =========================================================
   EFECTO GENERAL
========================================================= */

#porque .video-card:hover{

    transform:
    translateY(-6px)
    scale(1.01);
}

/* =========================================================
   AJUSTE SOLO SECCION SERVICIOS
========================================================= */

#servicios .premium-cards{

    margin-top:20px;

    gap:18px;
}

/* TARJETAS */

#servicios .premium-card{

    width:300px;

    min-height:320px;

    padding:22px 22px;

    border-radius:28px;
}

/* ICONO */

#servicios .icon-box{

    width:64px;
    height:64px;

    margin-bottom:18px;
}

#servicios .icon-box i{

    font-size:28px;
}

/* TITULOS */

#servicios .premium-card h3{

    font-size:22px;

    line-height:1.08;

    margin-bottom:14px;
}

/* TEXTO */

#servicios .premium-card p{

    font-size:14px;

    line-height:1.55;

    margin-bottom:20px;

    max-width:230px;
}

/* BOTON */

#servicios .btn-card{

    padding:10px 18px;

    font-size:12px;
}

/* HOVER MAS SUAVE */

#servicios .premium-card:hover{

    transform:
    translateY(-6px)
    scale(1.01);
}

/* =========================================================
   SECCION NOSOTROS PREMIUM
========================================================= */

.nosotros-premium {
  position: relative;
  width: 100%;
  padding: 160px 20px 120px;
  background: #ffffff; /* Fondo blanco */
  overflow: hidden;
}

.nosotros-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 169, 58, 0.3) 50%,
    transparent 100%
  );
  z-index: 1;
}

.nosotros-premium-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ==================== LADO IZQUIERDO ==================== */

.nosotros-content-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nosotros-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nosotros-tag {
  display: inline-block;
  width: fit-content;
  padding: 8px 16px;
  background: linear-gradient(135deg, #D4A93A, #FFD86B);
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 50px;
  text-transform: uppercase;
}

.nosotros-title {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  color: #111827;
  line-height: 1;
  letter-spacing: -2px;
  margin: 0;
}

.title-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #D4A93A, #FFD86B);
  border-radius: 10px;
}

.nosotros-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nosotros-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #050505;
  margin: 0;
  font-weight: 500;
}

.nosotros-text {
  font-size: 16px;
  line-height: 1.75;
  color: #0d0d0e;
  margin: 0;
}

.nosotros-specialties {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nosotros-specialties li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #0c0c0c;
  line-height: 1.6;
}

.nosotros-specialties i {
  color: #FFD86B;
  font-size: 18px;
  flex-shrink: 0;
}

.nosotros-closing {
  font-size: 15px;
  line-height: 1.8;
  color: #0c0c0c;
  margin: 0;
  font-style: italic;
}

/* ==================== ESTADÍSTICAS PREMIUM ==================== */

.nosotros-stats-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px;
  background: linear-gradient(
    145deg,
    rgba(212, 169, 58, 0.08),
    rgba(255, 216, 107, 0.04)
  );
  border: 1px solid rgba(212, 169, 58, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.stat-premium {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #D4A93A, #FFD86B);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 28px;
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-size: 28px;
  font-weight: 900;
  color: #FFD86B;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: #cbd5e1;
  font-weight: 500;
}

/* ==================== BOTÓN CTA ==================== */

.btn-contact-nosotros {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 16px 32px;
  background: linear-gradient(135deg, #D4A93A, #FFD86B);
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 12px 28px rgba(212, 169, 58, 0.25);
}

.btn-contact-nosotros:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(212, 169, 58, 0.35);
}

.btn-contact-nosotros i {
  font-size: 12px;
  transition: transform 0.4s ease;
}

.btn-contact-nosotros:hover i {
  transform: translateX(4px);
}

/* ==================== LADO DERECHO - VIDEO ==================== */

.nosotros-content-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(212, 169, 58, 0.2);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(212, 169, 58, 0.2);
}

.video-frame:hover {
  box-shadow: 
    0 35px 80px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(212, 169, 58, 0.3);
  transform: translateY(-8px);
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 40px;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 169, 58, 0.15),
    transparent
  );
  filter: blur(20px);
  pointer-events: none;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1200px) {
  .nosotros-premium-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .nosotros-title {
    font-size: clamp(42px, 4vw, 60px);
  }

  .nosotros-stats-premium {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nosotros-premium {
    padding: 110px 20px 80px;
  }

  .nosotros-content-left {
    gap: 30px;
  }

  .nosotros-title {
    font-size: 38px;
  }

  .nosotros-intro {
    font-size: 16px;
  }

  .nosotros-text {
    font-size: 15px;
  }

  .nosotros-stats-premium {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
  }

  .stat-premium {
    padding: 8px 0;
  }

  .stat-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .btn-contact-nosotros {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 13px;
  }

  .video-frame {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .nosotros-premium {
    padding: 60px 16px;
  }

  .nosotros-title {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .nosotros-intro {
    font-size: 15px;
  }

  .nosotros-stats-premium {
    padding: 20px;
    gap: 16px;
  }

  .title-underline {
    width: 80px;
    height: 3px;
  }
}

/* =========================================================
   SERVICIOS DETALLADOS (servicios.php)
========================================================= */

.servicios-detalle {
  padding: 155px 20px 80px;
  background: #ffffff; /* Fondo blanco */
  position: relative;
  overflow: hidden;
}

.detalle-container {
  max-width: 1200px;
  margin: 0 auto;
}

.detalle-titulo {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  color: #111827; /* Título dorado */
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detalle-subtitulo {
  text-align: center;
  color: #000000; /* Texto en negro */
  font-size: 16px;
  margin-bottom: 60px;
  font-weight: 500;
}

.categoria-servicio {
  margin-bottom: 60px;
}

.categoria-titulo {
  font-size: 22px;
  color: var(--dorado); /* Título dorado */
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--dorado);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.servicio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.servicio-item {
  background: #ffffff; /* Fondo blanco */
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.servicio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1), 0 0 15px rgba(184, 138, 31, 0.1);
  border-color: var(--dorado);
}

.servicio-item i {
  font-size: 32px;
  color: var(--dorado); /* Icono dorado */
  margin-bottom: 20px;
}

.servicio-item h4 {
  font-size: 18px;
  color: var(--azul);
  margin-bottom: 12px;
  font-weight: 700;
}

.servicio-item p {
  color: #000000; /* Texto en negro */
  line-height: 1.6;
  font-size: 14.5px;
  margin-bottom: 20px;
  font-weight: 400;
}

.btn-servicio {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--azul), #1a1f2e);
  color: #ffffff;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto; /* Botones alineados al fondo */
}

.btn-servicio:hover {
  background: linear-gradient(135deg, var(--dorado), var(--dorado-glow));
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 138, 31, 0.3);
}

/* VIDEO PROMOCIONAL */
.video-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 60px 0;
  background: linear-gradient(135deg, var(--azul), #1a1f2e);
  border-radius: 20px;
  overflow: hidden;
  padding: 40px;
}

.video-promo-container video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-promo-texto h3 {
  color: var(--dorado);
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 700;
}

.video-promo-texto p {
  color: #dddddd;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 15px;
}

.video-promo-texto .btn-reserva {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--dorado), var(--dorado-glow));
  color: #000000;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.video-promo-texto .btn-reserva:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 216, 171, 0.4);
}

/* NOTA HOMOLOGACIÓN */
.nota-homologacion {
  background: #fdfaf2; /* Fondo blanco/crema muy claro */
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
  border: 1px solid rgba(184, 138, 31, 0.2);
  border-left: 5px solid var(--dorado);
}

.nota-homologacion i {
  color: var(--dorado);
  margin-right: 10px;
}

.nota-homologacion p {
  color: #000000; /* Texto en negro */
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

@media(max-width: 992px) {
  .video-promo {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px;
  }
}

@media(max-width: 768px) {
  .servicio-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   RESPONSIVIDAD Y MENÚ HAMBURGUESA PREMIUM
========================================================= */

/* BOTÓN HAMBURGUESA */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1200;
  transition: all 0.3s ease;
}

.hamburger-menu .bar {
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #D3AC2B, #FFD86B);
  border-radius: 10px;
  transition: all 0.35s cubic-bezier(0.68, -0.6, 0.27, 1.55);
  box-shadow: 0 0 5px rgba(211, 172, 43, 0.4);
}

/* Efecto al activar la hamburguesa (X animada) */
.hamburger-menu.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger-menu.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Evitar scroll cuando el menú móvil está abierto */
body.nav-open {
  overflow: hidden;
}

/* Estilos de adaptabilidad para pantallas medianas (Tabletas y Móviles) */
@media (max-width: 992px) {
  .hamburger-menu {
    display: flex;
  }

  .header-inner > .btn-reserva {
    display: none !important; /* Ocultamos el botón principal del header para que no se amontone */
  }

  /* El menú .nav pasa a ser un cajón lateral premium deslizante */
  .nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 300px !important;
    height: 100vh !important;
    background: rgba(10, 14, 23, 0.96) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 60px 30px !important;
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6) !important;
    z-index: 1050 !important;
    border-left: 1px solid rgba(211, 172, 43, 0.25) !important;
  }

  /* Al activarse, se desliza a la vista */
  .nav.active {
    right: 0 !important;
  }

  .nav a {
    margin: 0 !important;
    font-size: 19px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
    width: 100% !important;
    text-align: center !important;
  }

  /* Animación secuencial en los enlaces del menú al abrirse */
  .nav.active a {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .nav.active a:nth-child(1) { transition-delay: 0.1s !important; }
  .nav.active a:nth-child(2) { transition-delay: 0.15s !important; }
  .nav.active a:nth-child(3) { transition-delay: 0.2s !important; }
  .nav.active a:nth-child(4) { transition-delay: 0.25s !important; }
  .nav.active a:nth-child(5) { transition-delay: 0.3s !important; }
  .nav.active a:nth-child(6) { transition-delay: 0.35s !important; }

  /* Estilizamos el enlace de reserva / contacto dentro del menú como un botón premium dorado */
  .nav a[href*="agendar"] {
    background: linear-gradient(135deg, #D3AC2B, #FFD86B) !important;
    color: #000000 !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    margin-top: 15px !important;
    font-weight: 700 !important;
    width: 85% !important;
    max-width: 240px !important;
    text-shadow: none !important;
    box-shadow: 
      0 4px 15px rgba(211, 172, 43, 0.3),
      0 0 10px rgba(211, 172, 43, 0.15) !important;
    display: inline-block !important;
  }

  .nav a[href*="agendar"]:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 6px 20px rgba(211, 172, 43, 0.45) !important;
  }

  .nav a::after {
    display: none !important; /* Quitamos la línea hover animada del desktop en versión móvil */
  }
}

/* Optimización extra de tarjetas y márgenes para móviles pequeños */
@media (max-width: 768px) {
  /* Hacemos que las tarjetas de casos de éxito tomen todo el ancho en móviles pequeños en vez de quedar estrechas */
  .porque-card {
    width: 100% !important;
    max-width: 480px !important;
  }
  
  /* Protegemos los premium cards de desbordar la pantalla en smartphones compactos */
  .premium-card {
    max-width: 100% !important;
  }

  /* Ajuste sutil del video promocional de la página de servicios */
  .video-promo {
    padding: 20px 15px !important;
  }
}

/* =========================================================
   CUSTOM PREMIUM CONFIRM MODAL (ALERTA DE RESERVA)
========================================================= */
.custom-confirm-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.custom-confirm-overlay.active {
  opacity: 1;
  visibility: visible;
}

.custom-confirm-box {
  background: linear-gradient(145deg, #0e121a, #07090d);
  border: 1px solid rgba(211, 172, 43, 0.3);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  padding: 40px 35px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85), 0 0 35px rgba(211, 172, 43, 0.2);
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.custom-confirm-overlay.active .custom-confirm-box {
  transform: scale(1) translateY(0);
}

/* Glow decorativo interno */
.custom-confirm-box::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(211, 172, 43, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.custom-confirm-icon {
  width: 80px;
  height: 80px;
  background: rgba(211, 172, 43, 0.08);
  border: 2px solid #D3AC2B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #FFD86B;
  font-size: 36px;
  box-shadow: 0 0 25px rgba(211, 172, 43, 0.25);
  animation: pulse-gold 2s infinite ease-in-out;
  position: relative;
  z-index: 1;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(211, 172, 43, 0.45); }
  70% { box-shadow: 0 0 0 15px rgba(211, 172, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(211, 172, 43, 0); }
}

.custom-confirm-title {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.custom-confirm-message {
  color: #cbd5e1;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 35px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.custom-confirm-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.custom-confirm-btn {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  border: none;
  outline: none;
}

.custom-confirm-btn-confirm {
  background: linear-gradient(135deg, #D3AC2B, #FFD86B);
  color: #000000;
  box-shadow: 0 8px 20px rgba(211, 172, 43, 0.3);
}

.custom-confirm-btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(211, 172, 43, 0.45);
}

.custom-confirm-btn-confirm:active {
  transform: translateY(0);
}

.custom-confirm-btn-cancel {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-confirm-btn-cancel:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.custom-confirm-btn-cancel:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .custom-confirm-box {
    padding: 30px 20px;
  }
  .custom-confirm-actions {
    flex-direction: column;
    gap: 10px;
  }
  .custom-confirm-btn {
    width: 100%;
  }
}