/*
─── ÍNDICE ─────────────────────────────────────────────────────────────
1. VARIABLES GENERALES Y TIPOGRAFÍAS
2. TÍTULOS
3. TEXTOS
4. BOTONES
5. HEADER
6. FOOTER
7. SECCIONES
8. RESPONSIVE
*/
/*─────────────────────────────────────────────────────────────────────────────
1. VARIABLES GENERALES Y TIPOGRAFÍAS
─────────────────────────────────────────────────────────────────────────────*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*::before,
*::after  {
    box-sizing: border-box;
}
:root  {
    --color-fondo: #010101;
    --color-texto: #fff;
    --color-dorado: linear-gradient(90deg, #FBBA50 8.86%, #F7E8A7 49.6%, #FACD75 90.34%), #FFF;
    --color-amarillo:#F6F775; /* si ya la tienes, elimina esta línea */
    --fuente: "Poppins", Sans-serif;
}
:root{
  --site-max: 1920px;      /* ancho máximo de la “escena” */
  --edge-fade: 100px;      /* anchura del degradado lateral */
}

/* Fondo base negro y capa de contenido por encima de los fondos */
html, body{ background:#000; }
body{
  position: relative;
  overflow-x: hidden;
}

/* Todo el contenido por encima de las capas de fondo */
body > *{ position: relative; z-index: 1; }

body  {
    font-family: var(--fuente);
    background-color: var(--color-fondo);
    background-image: url('../img/Web.webp');
    background-position: center top;
    background-repeat: none;
    background-size: cover;
    color: var(--color-texto);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/*─────────────────────────────────────────────────────────────────────────────
2. TITULOS
─────────────────────────────────────────────────────────────────────────────*/
.cv-titulo-hero{
    color: var(--color-texto);
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 50%;
    margin: 0;
}
.cv-subtitulo{
    color: var(--color-texto);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    width: 30%;
    line-height: normal;
    margin: 0;
}
.cv-h2{
    color: var(--color-texto);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    margin-top: 80px;
    margin-bottom: 30px;
}
/*─────────────────────────────────────────────────────────────────────────────
3. TEXTOS
─────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────
4. BOTONES
─────────────────────────────────────────────────────────────────────────────*/
.cv-boton  {
    padding: 12px 20px;
    border-radius: 100px;
    font-family: var(--fuente);            
    background: linear-gradient(90deg, #FBBA50 8.86%, #F7E8A7 49.6%, #FACD75 90.34%), #FFF;
    color: var(--color-fondo);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.101px; 
    letter-spacing: 0.103px;
    border: 0;
    backdrop-filter: blur(5.2px);
    -webkit-backdrop-filter: blur(5.2px);
    cursor: pointer;
    text-decoration: none;
    --glow-base:
      0 0 232.9px 0 #FFAC49,
      0 0 232.9px 0 rgba(255, 99, 6, 0.66),
      0 0 232.9px 0 rgba(255, 99, 6, 0.32),
      0 0 114.531px 0 rgba(255, 99, 6, 0.40),
      0 0 57.265px 0 rgba(255, 99, 6, 0.26);

    box-shadow: var(--glow-base);

    transition: box-shadow .25s ease, filter .25s ease, transform .1s ease;
    will-change: box-shadow, filter;
}

.cv-boton:hover,
.cv-boton:focus-visible {
    filter: brightness(1.06) saturate(1.08);

    box-shadow:
        0 0 232.9px 0 #FFAC49,
        0 0 232.9px 0 rgba(255, 172, 73, 0.25),
        0 0 232.9px 0 rgba(255, 99, 6, 0.825),
        0 0 232.9px 0 rgba(255, 99, 6, 0.40),
        0 0 114.531px 0 rgba(255, 99, 6, 0.50),
        0 0 57.265px 0 rgba(255, 99, 6, 0.325);
}
.cv-boton-grande  {
    padding: 12px 40px;
    border-radius: 100px;            
    background: linear-gradient(90deg, #FBBA50 8.86%, #F7E8A7 49.6%, #FACD75 90.34%), #FFF;
    color: var(--color-fondo);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--fuente);  
    line-height: 22.101px; 
    letter-spacing: 0.103px;
    border: 0;
    backdrop-filter: blur(5.2px);
    -webkit-backdrop-filter: blur(5.2px);
    cursor: pointer;
    text-decoration: none;
    --glow-base:
      0 0 232.9px 0 #FFAC49,
      0 0 232.9px 0 rgba(255, 99, 6, 0.66),
      0 0 232.9px 0 rgba(255, 99, 6, 0.32),
      0 0 114.531px 0 rgba(255, 99, 6, 0.40),
      0 0 57.265px 0 rgba(255, 99, 6, 0.26);

    box-shadow: var(--glow-base);

    transition: box-shadow .25s ease, filter .25s ease, transform .1s ease;
    will-change: box-shadow, filter;
}

.cv-boton-grande:hover,
.cv-boton-grande:focus-visible {
    filter: brightness(1.06) saturate(1.08);

    box-shadow:
        0 0 232.9px 0 #FFAC49,
        0 0 232.9px 0 rgba(255, 172, 73, 0.25),
        0 0 232.9px 0 rgba(255, 99, 6, 0.825),
        0 0 232.9px 0 rgba(255, 99, 6, 0.40),
        0 0 114.531px 0 rgba(255, 99, 6, 0.50),
        0 0 57.265px 0 rgba(255, 99, 6, 0.325);
}
/*─────────────────────────────────────────────────────────────────────────────
5. HEADER
─────────────────────────────────────────────────────────────────────────────*/
.cv-header{
    width: 100%;
    padding: 20px 40px;
    position: fixed;
    z-index: 999;
    
}
.cv-header-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 30px;
    border: 1.142px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(34.25569152832031px);
    padding: 12px 45px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto; /* centra el bloque del header */
    
}
/*─────────────────────────────────────────────────────────────────────────────
6. FOOTER
─────────────────────────────────────────────────────────────────────────────*/

.footer-cv {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 30px 50px;
  border-radius: 20px;
  overflow: hidden;
  width: 1200px;
}
.footer-cv img{
  margin-bottom: 30px;
}

.footer-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  height: auto;
  opacity: 0.07; /* ajusta la transparencia */
  pointer-events: none;
}

/* Contenido */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Columnas */
.footer-col {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-logo {
  font-size: 32px;
  margin: 0 0 10px;
}

.footer-col h3 {
  font-size: 16px;
  margin: 0 0 30px 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 5px;
}

.footer-link, 
.footer-col a {
  color: #fff;
  text-decoration: none;
}
.footer-link:hover,
.footer-col a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*─────────────────────────────────────────────────────────────────────────────
7. SECCIONES
─────────────────────────────────────────────────────────────────────────────*/
/* SECCION HERO INICIAL */


.cv-hero-section {
  position: relative;
  height: calc(100vh - 40px);
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 54px;
  overflow: hidden; /* asegura que el video respete el border-radius */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 80px 0;
  gap: 24px;
  text-align: center;
}

.cv-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cv-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to right,
      rgba(0, 42, 81, 0.65) 0%,
      rgba(0, 42, 81, 0.00) 22%,
      rgba(12, 31, 82, 0.00) 78%,
      rgba(12, 31, 82, 0.65) 100%
    ),
    linear-gradient(90deg,
      rgba(0, 42, 81, 1) 10%,
      rgba(12, 31, 82, 0.6) 50%,
      rgba(12, 31, 82, 1) 100%
    );
}


.cv-hero-section > *:not(.cv-hero-video):not(.cv-hero-overlay) {
  position: relative;
  z-index: 3;
}

.cv-trustpilot{
  width: 250px;
}

/*SECCION QUIEN ES CHRISTIAN*/
.seccion-christian{
    display: flex;
    flex-direction: row;
    width: 1200px;
    gap: 50px;

}
.cv-columna-texto {
    color: rgba(255, 255, 255, 0.70);
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: 34.849px;
}
.cv-grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(260px,1fr));
    gap:22px;
    z-index: 0;
    height: 500px;
}

@media (max-width: 840px){
    .cv-grid{ grid-template-columns: 1fr;     height: 700px;}
    
}

.cv-card{
    position:relative;
    padding:36px 24px;
    border-radius: 24.313px;
    border: 0.81px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24.313186645507812px);
    color:#fff;
    overflow:hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cv-card:before{
    content:"";
    position:absolute; inset:0;
    border-radius:22px;
    pointer-events:none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.kpi-number{
    margin:0 0 8px 0;
    font-weight:500;
    font-size: 50px;
    letter-spacing: .5px;
    line-height:1;
    text-align: center;
}

.kpi-text{
    margin:0;
    font-size: 24px;
    font-weight: 500;
    line-height:1.2;
    opacity:.9;
    text-align: center;
}

.hl{
    background: linear-gradient(180deg, #f6d776 0%, #f6b84e 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}


/* SECCION WIT */
.seccion-wit{
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding-left: 50px;
    border-radius: 31.64px;
    border: 0.188px solid #9E9E9E;
    background: #070322;
    margin: 80px 0;
    width: 1200px;
    justify-content: space-between;
    background-image: url('../img/fondoseccioncv.webp');
    background-position: center top;
    background-repeat: none;
    background-size: cover;
}
#img3{
    width: 340px;
    border-radius: 31.64px;

}

/*SECCION RESULTADOS*/
.seccion-resultados{
    display: flex;
    flex-direction: column;
    padding: 0 40px 40px 40px;
    width: 1200px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    gap: 40px;
}
.titulo-destacado{
    background: linear-gradient(180deg, #f6d776 0%, #f6b84e 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px; /* 110.526% */
    text-transform: uppercase;
    text-align: center;
    margin: 0;   
}
:root{
  --res-bg-1: #0b0f17;
  --res-bg-2: #0a0d14;
  --res-border: rgba(255,255,255,.08);
  --res-white: #ffffff;
  --res-muted: #b4c7e7; /* subtítulo */
  --res-quoteBadgeA: #f6d776; /* dorado */
  --res-quoteBadgeB: #f6b84e;
}

/* ===== Grid ===== */
.res-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(260px,1fr));
  gap:32px 28px;
}

.res-stars{ 
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:auto;
  flex-wrap:nowrap;
}
.res-stars .res-star{
  width: clamp(16px, 1.9vw, 22px);
  height: clamp(16px, 1.9vw, 22px);
  max-width:none;
  flex:0 0 auto;
  object-fit:contain;
}
@media (max-width:720px){
  .res-stars .res-star{ width:18px; height:18px; }
}


@media (max-width:1080px){
  .res-grid{ grid-template-columns: repeat(2, minmax(260px,1fr)); }
}
@media (max-width:720px){
  .res-grid{ grid-template-columns: 1fr; gap:22px; }
}

.res-card{
  position:relative;
  padding:28px 26px 28px 26px;
  border-radius:18px;
  background:
    radial-gradient(140% 120% at 100% 0%, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(180deg, var(--res-bg-1) 0%, var(--res-bg-2) 100%);
  border:1px solid var(--res-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 24px rgba(0,0,0,.35);
  color:var(--res-white);
  overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  z-index: 10;
}
.res-card::after{
  content:"";
  inset:0; border-radius:inherit; pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.res-card:hover{
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 14px 32px rgba(0,0,0,.45);
  border-color: rgba(255,255,255,.12);
}

/* ===== Badge de comillas ===== */
.res-badge{
  z-index: 99999;
}
.res-badge img{
  width:46px; height:46px; display:block;
  filter: drop-shadow(0 0 0 rgba(0,0,0,0)); /* nítido */
  
}

/* ===== Cabecera ===== */
.res-head{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:16px; padding-top:16px; /* deja aire bajo la badge */
  margin-bottom:10px;
}
.res-name{
  margin:0 0 2px 0;
  font-weight:800;
  font-size: clamp(18px, 2.2vw, 20px);
  line-height:1.15;
}
.res-role{
  margin:0;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height:1.2;
  color: #3F5899
}
.res-flag{
  width:34px; height:auto; flex:0 0 auto;
}

/* ===== Cita ===== */
.res-quote{
  margin:12px 0 0 0;
  font-size: clamp(14px, 2vw, 16px);
  line-height:1.65;
  color: rgba(255,255,255,.92);
}

/* Espaciado vertical más aire, como en la captura */
.res-card{ min-height: 280px; }
@media (min-width:1080px){
  .res-card{ min-height: 300px; }
}
.linea-divisoria-corta{
    width: 250px;
    height: 12px;
    border-radius: 12px;
    background: #FACD75;
    box-shadow: 0 0 337.393px 0 #FACD75, 0 0 337.393px 0 #FACD75, 0 0 337.393px 0 #FACD75, 0 0 231.263px 0 #FACD75, 0 0 66.075px 0 #FACD75, 0 0 33.038px 0 #FACD75;
    margin: -5px auto 2rem auto;
}

/* SECCION FORMULARIO */

.seccion-formulario{
  border-radius: 28px;
  height: 270px;
  width: 1200px;
  margin: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-image: url('../img/background_form.webp');
  background-position: center top;
  background-repeat: none;
  background-size: cover;

}
.seccion-formulario p{
  margin: 0px;
  text-align: center;
  color: #FFF;
  font-size: 22.095px;
  font-style: normal;
  font-weight: 400;
  line-height: 115.03%;
}
#form-reserva{
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#form-reserva input{
  padding: 15px 30px 15px 30px;
  border: none;
  border-radius: 33px;
  font-size: 20px;
  font-weight: 600;
}
#form-reserva button{
  border-radius: 100px;
  padding: 15px 15px 15px 15px;          
  background: linear-gradient(90deg, #FBBA50 8.86%, #F7E8A7 49.6%, #FACD75 90.34%), #FFF;
  color: var(--color-fondo);
  text-align: center;
  font-size: 24px;
  font-weight:600;
  line-height: 22.101px; 
  letter-spacing: 0.103px;
  border: 0;
  backdrop-filter: blur(5.2px);
  -webkit-backdrop-filter: blur(5.2px);
  cursor: pointer;
  text-decoration: none;
  --glow-base:
      0 0 232.9px 0 #FFAC49,
      0 0 232.9px 0 rgba(255, 99, 6, 0.66),
      0 0 232.9px 0 rgba(255, 99, 6, 0.32),
      0 0 114.531px 0 rgba(255, 99, 6, 0.40),
      0 0 57.265px 0 rgba(255, 99, 6, 0.26);
  box-shadow: var(--glow-base);
  transition: box-shadow .25s ease, filter .25s ease, transform .1s ease;
  will-change: box-shadow, filter;
}

.border-radius{
  border-radius: 31.64px;
}
/*─────────────────────────────────────────────────────────────────────────────
8. RESPONSIVE
─────────────────────────────────────────────────────────────────────────────*/

/* Para dispositivos móviles */
@media only screen and (max-width: 1199px) {
  body{
    padding: 0px;
  }
  .seccion-christian {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 50px;
  }
  .seccion-wit {
    display: flex;
    flex-direction: column;
    width: 92%;
    gap: 30px;
    padding-left: 00px;
    border-radius: 31.64px;
    border: 0.188px solid #9E9E9E;
    background: #070322;
    margin: 50px 0;
    padding: 20px 0px 0 0px;
    justify-content: space-between;
    align-items: center;
  }
  #img1{
    width: 100%;
    padding:  0 20px;
  }
  #img2{
    width: 30%;
  }
  #img3 {
    width: 100%;
    border-radius: 31.64px;
  }
  .seccion-resultados{
    width: 92%;
  }
  .seccion-formulario{
        height: auto;
        width: 92%;
        margin: 50px 0px;
        padding: 20px;
  }
  #form-reserva {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
  }
  #form-reserva input {
    width: 100%;
  }
  .cv-header {
      width: 92%;
      padding: 20px 0px;
      position: fixed;
      z-index: 999;
  }
  .cv-titulo-hero{
    width: 100%;
    color: var(--color-texto);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .cv-hero-section {
    width: 92%;
    border-radius: 24px;
    padding: 15px 15px 70px 15px;
    margin-top: 80px;
    height: 80vh;
    gap: 20px;
  }
  .cv-subtitulo {
    width: 100%;
  }
  .cv-header-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 30px;
    border: 1.142px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(34.25569152832031px);
    padding: 0px 0px 0px 10px;
  }
  .cv-columna-texto {
    color: rgba(255, 255, 255, 0.70);
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-align: center;
    
  }
  .seccion-base{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 92%;
  }
  .cv-h2 {
    color: var(--color-texto);
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 30px;
    width: 75%;
  }
  .seccion-christian img {
    width: 100%;
  }
  .seccion-resultados {
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    gap: 30px;
  }
  .footer-cv {
    width: 92%;
    padding: 20px;
  }
  .footer-col{
    width: 100%;
    margin: 0;
    padding-bottom: 30px;
  }
  .footer-col h3 {

    margin: 0 0 15px 0;
  }
}

@media only screen and (min-width: 1921px) {
/* Capa con tu imagen de fondo, centrada y “cover” */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background: url('../img/Web.webp') center top / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

/* Capa del fade lateral a negro fuera de la franja de 1920px */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  /* lado “extra” cuando la pantalla supera 1920px (si no, 0) */
  --side: max(0px, (100vw - var(--site-max)) / 2);

  /* transparente en el centro, negro en los laterales, con transición suave (--edge-fade) */
  background:
    linear-gradient(
      to right,
      #000 0,
      #000 var(--side),
      rgba(0,0,0,0) calc(var(--side) + var(--edge-fade)),
      rgba(0,0,0,0) calc(100% - var(--side) - var(--edge-fade)),
      #000 calc(100% - var(--side)),
      #000 100%
    );
}
}