/* Reseteo y configuración global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Roboto Slab", serif; */
  font-family: "Inter", sans-serif;
  color: #fff;
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  /* background-color: #CBBFB1; */
  /* background-image: url('../img/fondo.jpg'); */
  /* background-size: cover; */
  /* background-position: center; */
  /* background-attachment: fixed; */
}

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem;
}

.section-title p {
  /* font-family: "Playfair Display", serif;
    font-size: 70px;
    margin: 40px; */
  position: relative;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  /* fallback para navegadores o validadores viejos */
  font-size: clamp(2rem, 8vw, 5rem);
  /* escala entre 4rem y 10rem según viewport */
  /* 40px - 70px según ancho */
  text-align: center;
  /* margin: 2rem 0; */
}

.section-title p + p {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  color: #cbbfb1;
  margin-top: 0.5rem;
}

/* Subrayado decorativo */
/* .section-title p::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
     distancia entre el texto y la línea 
    transform: translateX(-50%);
    width: 120%;
    más ancho que el texto 
    height: 5px;
    background-color: #e6dbcf;
     color claro como en la imagen 
} */

/* ICONO FLOTANTE WHATSAPP */
/* #whatsapp .wtsapp {
    position: fixed;
    transform: all .5s ease;
    background-color: #25d366;
    display: block;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    border-radius: 50%;
    border-right: none;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    bottom: 40px;
    left: 20px;
    border: 0;
    z-index: 9999;
    width: 50px;
    height: 50px;
    line-height: 50px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
} */
/* BOTON 1 */
#whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wtsapp {
  background-color: #25d366;
  color: #fff;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

#whatsapp .wtsapp:hover {
  text-decoration: none;
  background: #fff;
  color: #0df053;
}

#whatsapp .wtsapp i {
  /* font-size: 30px; */
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

#whatsapp .wtsapp i:hover,
.wtsapp-text:hover {
  color: #0df053;
}

/* BOTON 2 */
.wtsapp2 {
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
}

/* .wtsapp2:hover{
    color: #25d366;
    background-color: white;
} */
.wtsapp-text {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  background: #25d366;
  padding: 8px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
}

/* .wtsapp-text:hover {
    background-color: white;
    color: #25d366;
} */
#whatsapp:hover .wtsapp,
#whatsapp:hover .wtsapp-text,
#whatsapp:hover .wtsapp i {
  background: #fff;
  color: #0df053;
  transition: all 0.3s ease;
}

#whatsapp .wtsapp:focus {
  border: none;
  outline: none;
}

/* #whatsapp .wtsapp:before{
    content: '';
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%; */
/* -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite; */
/* } */
/* @keyframes pulse-border {
    0%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1;}
    100%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5); opacity: 0;}
} */

/* ===================== */
/* NAVBAR (desktop y móvil) */
/* ===================== */

.nav-bar {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  /* transicion del scroll */
  transition: top 0.4s ease-in-out;
  background-color: #000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Menú principal */
.main-menu {
  margin: 0 auto;
}

/* Lista del menú (modo escritorio) */
.main-menu ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style: none;
  display: inline-block;
  margin: 0 40px;
  font-size: 16px;
  cursor: pointer;
}

/* .main-menu ul li:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
} */

/* Estilo base para los enlaces del menú */
.main-menu ul li a {
  position: relative;
  text-decoration: none;
  color: white;
}

/* Línea decorativa que aparece debajo del enlace al hacer hover */
.main-menu ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: rgb(204, 202, 202);
  transition: transform 0.4s ease;
  margin-bottom: -5px;
}

.main-menu ul li a:hover {
  color: rgb(208, 208, 209);
}

/* Activamos la línea animada solo al hacer hover */
.main-menu ul li a:hover::after {
    transform: translateX(-50%) scaleX(1);
  /* La línea se expande desde el centro */
}

/* contenedor nav mobile */
.nav-mob {
  display: none;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: center;
}

/* ===================== */
/* BOTÓN HAMBURGUESA */
/* ===================== */

/* Por defecto no se muestra (solo para móviles) */
.icon {
  /* display: block; */
  position: relative;
  /* o incluso static */
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Línea principal de la hamburguesa */
.hamburger {
  width: 30px;
  height: 4px;
  background: #fff;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

/* Líneas superior e inferior de la hamburguesa */
.hamburger:before,
.hamburger:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.hamburger:before {
  top: -10px;
}

.hamburger:after {
  top: 10px;
}

/* Animación al abrir (se convierte en cruz) */
.icon.active .hamburger {
  background: transparent;
  box-shadow: none;
}

.icon.active .hamburger:before {
  top: 0;
  transform: rotate(45deg);
}

.icon.active .hamburger:after {
  top: 0;
  transform: rotate(135deg);
}

/* ===================== */
/* RESPONSIVE (móvil) */
/* ===================== */

@media only screen and (max-width: 950px) {
  .nav-mob {
    display: flex;
  }

  /* Transición aplicada al menú */
  #menu {
    transition: all 0.5s;
  }

  /* Fondo del navbar en móvil */
  .nav-bar {
    background: #000000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  /* Mostrar botón hamburguesa */
  .icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    /* right: 10px; */
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    cursor: pointer;
  }

  /* Ocultar menú por defecto, con transición de max-height */
  .main-menu ul {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    padding: 0;
    background: #000000;
    width: 100%;
    position: absolute;
    top: 35px;
    left: 0;
    text-align: center;
    transition:
      max-height 0.5s ease-in-out,
      padding 0.3s;
  }

  /* Menú abierto (se despliega suavemente) */
  .main-menu ul.active {
    max-height: 500px;
    padding: 10px 0;
  }

  /* Espaciado entre items del menú en móvil */
  .main-menu ul li {
    padding: 10px;
  }
}

/* Responsive: mover logo a la izquierda y hamburguesa a la derecha */
@media (max-width: 950px) {
  .main-menu {
    width: 100%;
    /* display: flex;
        justify-content: space-between;
        align-items: center; */
    padding: 0 1rem;
  }

  /* .logo {
        display: flex;
        height: 90px;
    } */

  .icon {
    position: static;
    transform: none;
  }
}














/* SECTION: HERO */
/* ==========================
   SECTION: HERO (corregido)
   Comentarios incluidos
   ========================== */

#hero {
  position: relative;
  /* usar min-height evita problemas si el contenido necesita más espacio */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding: 3.5rem 1rem; */
  width: 100%;
  overflow: hidden; /* evita scroll horizontal por video o background */
}

@media (max-width: 950px) {
  #hero {
    /* padding: 2rem 1rem; */
    margin-bottom: 100px;
    min-height: 80vh;
  }
}

/* Contenedor relativo para posicionar video y contenido */
.hero__container {
  position: relative;
  width: 100%;
  height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

/* Video de fondo - siempre detrás */
.video-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* fondo */
  background-color: #000; /* fallback mientras carga */
  filter: saturate(0.95) brightness(0.6); /* sutil oscurecimiento para contraste */
}

/* Navegación dentro del hero - z-index encima del video */
.hero-nav {
  position: absolute;
  top: 18px;
  left: 6%;
  right: 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

/* Logo */
.hero-nav .logo {
  width: 130px;
  height: auto;
}

/* Lista de navegación (scopeada al hero para evitar romper otros navs) */
.hero-nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.hero-nav__list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

/* Subrayado animado (solo en hero) */
.hero-nav__list a::after {
  content: '';
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  transition: width 0.25s ease;
}
.hero-nav__list a:hover::after { width: 50%; }

/* Text-box: centrado y por encima del video */
.text-box {
  position: relative;
  z-index: 3; /* encima del video */
  color: #fff;
  max-width: 980px;
  margin: 0 auto;
  padding: 1rem;
}

/* Eyebrow / pequeño título */
.text-box__eyebrow {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #ffdf8a;
}

/* Título principal: tipografía responsive con clamp() */
.text-box__title{
    font-size: clamp(3rem, 12vw, 11.8rem); /* responsive */
    line-height: 0.9;
    margin: 0;
    font-weight: 900;

    color: transparent;
    -webkit-text-stroke: 1px #fff;

    background-image: url("../img/back.png");
    background-repeat: repeat;
    background-size: auto;
    background-position: 0 0;

    -webkit-background-clip: text;
    background-clip: text;

    animation: back 20s linear infinite;
}

@keyframes back {
    100% {
        background-position: 2000px 0;
    }
}

/* Subtítulo */
.text-box__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  margin: 1.1rem 0 2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
}

/* CTA row */
.row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  color: #111;
  background: #ffdf8a;
  text-decoration: none;
  font-weight: 700;
}
.hero-cta--secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}

/* Social icons verticales */
.social-icons {
  position: absolute;
  right: 5%;
  bottom: 6%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-icons img {
  width: 26px;
  height: auto;
  display: block;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .hero-nav__list { gap: 14px; font-size: 0.95rem; padding-right: 8px; }
  .hero-nav { top: 12px; left: 4%; right: 4%; }
  .text-box__title { font-size: clamp(2rem, 9.5vw, 3.8rem); }
  .text-box p, .text-box h3 { padding: 0 10px; }
  .social-icons { display: none; } /* opcional: ocultar en móviles */
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  .text-box__title { animation: none; transition: none; }
  .video-back { transition: none; }
}



/* SECTION: TRANSITION */
/* SECTION 2: TRANSITION */

.estadisticas {
    font-family: "Inter", sans-serif;
    background: #000;
    padding: 60px;
    color: white;
    /* width: 70%; */
    /* width: 1100px; */
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
/* .estadisticas__intro{
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: row;
    width: 100%;

}

.estadisticas__titulo {
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.estadisticas__descripcion {
    font-family: "Inter", sans-serif;
    max-width: 60%;
    margin: 0 auto 40px;
    font-size: 20px;
    color: #ccc;
    padding-left: 20px;
} */

.estadisticas__valores {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.estadisticas__item {
    min-width: 120px;
}

.estadisticas__numero {
    font-family: "Inter", sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
}

.estadisticas__etiqueta {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    color: #aaa;
}

@media only screen and (max-width:950px) {
    .estadisticas{
        /* width: 100%; */
        padding: 40px;
        text-align: center;
    }
    /* .estadisticas__intro {
        display: flex;
        flex-direction: column;   
    }
    .estadisticas__titulo {
        font-size: 40px;
    }
    .estadisticas__descripcion {
        font-size: 20px;
        max-width: 100%;
        padding-left: 0px;
    } */
    .estadisticas__numero {
        font-size: 50px;               
    }
    .estadisticas__etiqueta {
        font-size: 20px;              
    }
}
@media only screen and (max-width:1024px) {
    .estadisticas {
        width: 100%;
        padding: 40px;
        text-align: center;
    }
}
@media only screen and (max-width:1440px) {
    .estadisticas {
        max-width: 100%;
    }
}

.estadisticas__icon{
    width: 6rem;
    height: 6rem;
    margin-bottom: 10px;
}

.estadisticas__item i{
    width: 4rem;
    height: 4rem;
    margin-bottom: 10px;
    color: white;
}

.autoRotate {
  animation: AutoRotateAnimation;
}

@keyframes AutoRotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.autoshow{
  animation: text-appear both;
  animation-timeline: view();
  animation-range: entry 20%, cover 10vh;
}

@keyframes text-appear {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.imageReveal{
  /* animation-timeline: view(10% 5%); */
  animation: imageReveal both;
  animation-timeline: view(90% 5%);
}

@keyframes imageReveal {
  from {
    filter: saturate(0) contrast(4) brightness(.1) blur(1.5px);
    opacity: 0;
    scale: .95;
    translate: 0 4rem;
  }
  to {
    filter: none;
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

/* SECTION: ABOUT-US */

.about-us__container {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 1rem;
  flex-direction: column;
}

.about-us__content {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

@media only screen and (max-width: 950px) {
  .about-us__content {
    flex-direction: column;
    text-align: center;
  }
}

.about-us__img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

.about-us__text {
  max-width: 500px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
}

@media only screen and (max-width: 950px) {
  .about-us__text {
    /* max-width: 100%; */
    align-items: center;
  }
}

.about-us__subtitle{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffaf25;
  margin-bottom: 0.5rem;
}

.about-us__title {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-us__description {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ccc;
}

.about-us__links{
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-direction: column;
}

.link__button{
  display: flex;
  padding: 10px 18px;
  border-left: 4px solid #ffaf25;
  text-decoration: none;
  color: #ffaf25;
  font-weight: 700;
  /* background-color: #854836; */
  transition: background-color 0.3s ease;
}

.about-us__button {
  display: flex;
  width: fit-content;
  padding: 10px 18px;
  /* border-left: 4px solid #ffaf25; */
  text-decoration: none;
  color: #ffaf25;
  border-radius: 5px;
  font-weight: 700;
  background-color: rgb(133, 72, 54)  ;
  transition: background-color 0.3s ease;
}

.about-us__button:hover {
  color: #000000;
  background-color: rgba(238, 147, 119, 0.963);
}

/* .about-us__left{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
} */


/* =========================
   TIMELINE & PROCESS CLEAN
   - Usa .timeline y .checkpoint (grid)
   - Image | center line | text en desktop
   - Mobile: linea a la izquierda + items apilados
   ========================= */

.timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* vertical central line (desktop) */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #222;
  transform: translateX(-50%);
  z-index: 1;
}

/* cada checkpoint = 3 columnas: img | spacer (line) | content */
.checkpoint {
  position: relative; /* necesario para ::after */
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 20px;
  align-items: center;
  margin: 36px 0;
  z-index: 2; /* encima de la linea */
}

/* imagen */
.checkpoint__img { grid-column: 1; display:flex; justify-content:center; align-items:center; }
.checkpoint__img img {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  display:block;
}

/* contenido */
.checkpoint__content {
  grid-column: 3;
  padding: 0 10px;
  text-align: left;
  position: relative; /* para su pseudo-elemento */
}

/* punto central (marker) */
.checkpoint::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #ffaf25;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* punto amarillo pequeño junto al contenido (antes: div::before) */
.checkpoint__content::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffaf25;
  z-index: 3;
}

/* alternancia: mover imagen a la derecha y contenido a la izquierda en pares */
.checkpoint:nth-child(even) .checkpoint__img {
  grid-column: 3; /* imagen a la derecha */
}

/* **CORRECCIÓN IMPORTANTE**: mover el contenido para que quede en frente de la imagen */
.checkpoint:nth-child(even) .checkpoint__content {
  grid-column: 1;     /* contenido a la izquierda */
  text-align: right;  /* alinear texto hacia la línea central */
  justify-self: end;  /* empuja el bloque hacia la línea (columna 2) */
}

/* Alineaciones por defecto para impares (imagen izquierda, texto derecha) */
.checkpoint:nth-child(odd) .checkpoint__content {
  grid-column: 3;
  text-align: left;
  justify-self: start;
}

/* punto naranja junto al contenido */
/* .checkpoint__content::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffaf25;
  z-index: 3;
} */

/* ubicar el punto según lado */
.checkpoint:nth-child(odd) .checkpoint__content::before { left: -6px; }
.checkpoint:nth-child(even) .checkpoint__content::before { right: -6px; }

.effect {
  display: none;
}

/* tipografías (usa tus clases existentes) */
.timeline__subtitle { color: #ffaf25; font-weight:700; margin-bottom:6px;font-size: 1.5rem; }
.timeline__title { color:#fff; font-size:2.5rem; margin:6px 0; }
.about-us__description { color:#ccc; line-height:1.6; margin:0; }

/* ===== Responsive: mobile ===== */
@media (max-width: 900px) {
  /* linea a la izquierda */
  .timeline::before {
    left: 32px;
    width: 4px;
  }

  /* apilar columnas: marker column + full content column */
  .checkpoint {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: start;
  }

  /* marker ajustado */
  .checkpoint::after {
    left: 32px;
    top: 22px;
    transform: translate(-50%, 0);
  }

  /* imagen y contenido siempre en segunda columna */
  .checkpoint__img { grid-column: 2; order: 0; justify-content:flex-start; }
  .checkpoint__content { grid-column: 2; text-align: left; }

  /* el punto amarillo del contenido se reubica arriba (si querés) */
  .checkpoint__content::before {
    left: 16px;
    top: -6px;
    transform: translate(-50%, -50%);
  }

  .checkpoint__img img { max-width: 90%; margin-bottom: 10px; }
}

/* pequeños ajustes visuales */
@media (max-width: 480px) {
  .timeline__title { font-size: 1.4rem; }
  .timeline__subtitle { font-size: 0.95rem; }
  .about-us__description { font-size: 0.95rem; }
}



/* SECTION: PRICING */

/* Contenedor de las cards - flex para desktop, columna en mobile */
.pricing__container {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch; /* que las cards tengan altura parecida */
  max-width: 1200px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* Responsive: apila en pantallas pequeñas */
@media (max-width: 900px) {
  .pricing__container {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }
}

.pricing-card {
  position: relative;
  background-color: #e9e6e3b0;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  padding: 20px 25px;
  max-width: 340px;
  border: 3px solid #854836;
}

.pricing__card__inner {
  /* background-color: #ffb22c; */
  border-radius: 17px;      /* ligeramente menor que el exterior para mostrar el borde */
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing__card--featured {
  padding: 3px; /* grosor visible del "borde" */
  border: none;
  /* background: linear-gradient(135deg, #ff7a18 0%, #8e2de2 50%, #4a00e0 100%); */
  border-radius: 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.10);
}

.pricing__card--featured .pricing__card__inner {
  border-radius: 18px; /* radio interior = exterior - padding (aprox) */
}

/* ===== Tipografía y contenido ===== */
.pricing__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff7a18;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 12px;}

.pricing__title {
  font-size: 1.1rem;
  font-weight: 100;
  /* text-transform: uppercase; */
  text-align: center;
  margin-bottom: 0.4rem;
  color: #fff; /* contraste sobre fondo oscuro del featured o naranja */
}

.pricing__price {
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 4rem;
  font-weight: bold;
  margin: 6px 0 10px;
  color: #ffffff;
}

.pricing__price__suffix {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* Lista de características */
.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  line-height: 1.6;
}

.pricing__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #fff;
}

.pricing__description {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(245,245,245,0.9);
  margin-bottom: 14px;
}

.pricing__divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin: 18px 0;
  border-radius: 1px;
}

.pricing__cta {
  display: inline-block;
  text-align: center;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: #ffaf25;
  font-weight: 700;
  background-color: #854836;
  margin-top: auto; /* empuja el botón al bottom si la card tiene espacio */
}

/* Hover states y micro-interacciones */
/* .pricing__card:hover {
  transform: scale(1.05);
  transition: transform 0.4s ease;
} */

/* .pricing__card--featured:hover {
  transform: translateY(-8px);
} */



.pricing-card .contact__submit {
  text-align: center;
  text-decoration: none;
  color: #ffaf25;
  font-weight: bold;
  background-color: #854836;
}

.pricing__card--featured {
  /* El padding actúa como "grosor" del borde */
  padding: 3px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff7a18 0%, #8e2de2 50%, #4a00e0 100%);
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}


.pricing__card--featured .pricing__card__inner {
  background-color: #e9e6e3b3;
  border-radius: 19px; /* radio interior = radio exterior - padding (aprox) */
  padding: 25px; /* padding interno del contenido */
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* Si querés un contraste mayor, podés usar un fondo blanco sólido en el inner:
   background-color: #ffffff;  */

/* Opcional: añadir pequeño efecto hover en el featured */
/* .pricing__card--featured:hover {
  transform: translateY(-6px);
  transition: transform 200ms ease;
} */

/* Mantener estilos base del card (asegurate que existan en tu CSS) */
.pricing__card {
  position: relative;
  border-radius: 20px;
  
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffb22cb0;
  border: 3px solid #854836;
}

/* Ajustes visuales para que el featured no herede border de .pricing__card */
.pricing__card--featured {
  /* ya definido más arriba, repetido para claridad */
  border: none;
}

/* SECTION: COMPARATIVA DE PRECIOS */
#table{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features {
  border-collapse: collapse;
}
.features__cell {
  max-width: 250px;
  font-size: 0.9em;
  font-weight: normal;
  padding: 0.5em 1em;
  color: #ffffff;
  border: 1px solid #ffffff;
  line-height: 1.4;
}

.features__cell--shaded {
  background: #a57575;
}

.features__cell--large {
  font-size: 1.25em;
}

.features__cell--large {
  font-size: 1.25em;
}

.features__cell--center {
  text-align: center;
}

.features__tick {
  color: #17a2b8;
  font-size: 1.2em;
}

/* SECTION: REVIEWS */
#reviews {
  padding: 2rem 0 0;
  text-align: center;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.review__container {
  overflow: hidden;
  width: 100%;
}

.carousel {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.carousel:active {
  cursor: grabbing;
}

.wrapper {
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  gap: 1em;
  will-change: transform;
}

.wrapper .box {
  min-width: 320px;
  max-width: 320px;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  flex-shrink: 0;
}

.wrapper .box i.quote {
  font-size: 20px;
  color: #242322;
  margin-bottom: 15px;
}

.wrapper .box .content {
  padding-top: 10px;
  font-size: 20px;
  color: #17a2b8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .box .info .name {
  font-size: 17px;
  font-weight: 600;
  /* color: #17a2b8; */
  /* margin-top: 15px; */
}

.wrapper .box .info .job {
  font-size: 15px;
  font-weight: 500;
  color: #17a2b8;
  /* margin-bottom: 10px; */
}

.wrapper .box .info .stars {
  margin-top: 2px;
}

.box .info .stars i {
  color: #17a2b8;
  font-size: 15px;
}

.wrapper .box .content .image {
  height: 75px;
  width: 75px;
  padding: 3px;
  background: #17a2b8;
  border-radius: 50%;
}

.box .content .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}

.box p,
.box h3,
.box i,
.box .content .info div {
  /* display: flex; */
  /* align-items: center; */
  /* gap: 20px; */
  color: #000;
}

@media (max-width: 900px) {
  /* .wrapper {
        flex-direction: column;
    } */

  .wrapper .box {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}

@media (max-width: 700px) {
  .wrapper .box {
    width: 100%;
  }
}

/* @keyframes spin {
    from {translate: 0;}
    to {translate: -100%;}
} */

.review__footer {
  padding: 4rem 2rem 3rem;
  border-radius: 20px;
  text-align: center;
  color: #000;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  place-items: center;
}
.review__footer-title {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.review__footer-text {
  font-family: "Inter", sans-serif;
  color: #9c9b9b;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.review__footer .contact__submit {
  font-family: "Inter", sans-serif;
  width: 150px;
  padding: 0.6rem 1.3rem;
  background-color: #cbbfb1;
  border: none;
  font-size: 0.95rem;
  color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
}

/* SECTION 6: CONTACT US */
/* Parte 1: Contenedor General */
.contact__container {
  position: relative;
  max-width: 1100px;
  min-height: 100vh;
  padding: 2rem;
  /* background-color: #923636; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}

/* Parte 1.2: Contenedor secundario 1(info y formulario) */
.contact__content {
  display: flex;
  /* flex-direction: row; */
  margin: -3rem 0 1rem 0;
}

@media (max-width: 950px) {
  .contact__content {
    flex-direction: column;
    width: 100%;
  }
}
.form__status {
  color: white;
  margin-top: 10px;
  text-align: center;
}

/* Parte 2: Bloque completo del Formulario y datos */
.contact__form {
  width: 100%;
  /* background-color: #b45656; */
  /* border-radius: 10px; */
  /* box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1); */
  z-index: 1000;
  overflow: hidden;
  /* display: grid;
    grid-template-columns: repeat(2, 1fr); */
}

/* Parte 3: Datos de Contacto - Izquierda */
.contact__info {
  /* padding: 50px; */
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 1rem;
  padding: 2rem;
  /* margin: 10px; */
  /* background-color: #974d4d; */
}

.contact__info-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: #000;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.contact__info-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: #000;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.contact__info-box a img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.contact__info-box a i {
  font-size: 4.5rem;
  color: #cbbfb1;
}

.contact__info-box a p {
  font-family: "Inter", sans-serif;
}

/* Opcional: transición base para que no salte al volver */
/* .contact__info-box a img, */
.contact__info-box a i,
.contact__info-box a p {
  transition: all 0.3s ease;
}

/* Hover: agranda ambos sin moverlos */
/* .contact__info-box:hover a img, */
.contact__info-box:hover a i,
.contact__info-box:hover a p {
  transform: scale(1.05);
}

@media (max-width: 950px) {
  .contact__info {
    /* grid-template-columns: 1fr; */
    width: 100%;
  }

  .contact__info-box a p {
    font-size: 20px;
  }
}

@media (max-width: 650px) {
  .contact__info {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 2rem 0;
  }
}

@media (max-width: 320px) {
  .contact__info {
    padding: 2rem 0;
  }
}

/* Parte 4: Contenedor del Formulario - Derecha */
.contact__form-container {
  padding: 50px;
  width: 50%;
  /* background-color: rgb(151, 106, 106); */
  position: relative;
  margin: 20px 0;
}

/* .contact__form-container::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: red;
    transform: rotate(45deg);
    top: 50%;
    left: -13px;
} */
.contact__form-container h2 {
  font-family: "Inter", sans-serif;
  font-size: 25px;
}

@media (max-width: 950px) {
  .contact__form-container {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .contact__form-container h2 {
    font-family: "Inter", sans-serif;
    font-size: 25px;
  }
}

/* Parte 5: Formulario Interno */
.contact__form form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.contact__form-title {
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.5rem;
  /* margin-bottom: 0.7rem; */
}

/* Parte 6: Inputs del Formulario */
.contact__input-group {
  position: relative;
  margin: 1rem 0;
}

.contact__input-group label {
  font-family: "Inter", sans-serif;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.contact__input-group.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.contact__input-group.focus .contact__span::before,
.contact__input-group.focus .contact__span::after {
  width: 50%;
  opacity: 1;
}

.contact__input {
  width: 100%;
  outline: none;
  border: 2px solid #cbbfb1;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-size: 0.95rem;
  border-radius: 5px;
  transition: 0.3s;
}

.contact__span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  z-index: 500;
  /* pointer-events: none;
    background-color: red; */
}

.contact__span::before,
.contact__span::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 5px;
  background-color: rgb(0, 0, 0);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.3s;
}

.contact__span::before {
  left: 50%;
}

.contact__span::after {
  right: 50%;
}

input[type="date"]::-webkit-datetime-edit {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: transparent;
}

input[type="date"]:focus::-webkit-datetime-edit {
  color: white;
}

/* 7. BOTÓN DE ENVÍO */
.contact__submit {
  font-family: "Inter", sans-serif;
  width: 100%;
  padding: 0.6rem 1.3rem;
  background-color: #cbbfb1;
  border: none;
  font-size: 0.95rem;
  color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
  margin: 0;
}

.contact__submit:hover {
  background-color: white;
  color: #cbbfb1;
  transition: 0.3s;
}

/* Parte 8: Mapa */
/* .contact__map{
    width: 1100px;
    border: 0;
    border-style: none;

    height: 80vh;
    background-color: #262a66;
}
@media (max-width: 950px) {
    .contact__map {
        height: 70vh;
    }
}
@media (max-width: 1150px) {

    .contact__container,
    .contact__map {
        width: 100%;
    }
}
 */

/* ACORDEON */
/* .close {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
} */

/* .acordeon {
    display: grid;
    height: 100vh;
    place-items: center;
    background-color: cadetblue;
} */

.acordeon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.acordeon__container {
  /* width: 90%; */
  max-width: 50rem;
  /* padding: 2rem; */
  /* background-color: #fff; */
  box-shadow: 0 0 5px #00000070;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* z-index: 99; */
}

.acordeon__container .acordeon-bloque {
  /* margin: 0 0 1rem; */
  padding: 1rem;
  color: #000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* border-radius: 1rem; */
  background-color: #fff;
  border-bottom: 1px solid #00000015;
  /* -webkit-box-shadow:
        0.4rem 0.4rem 0.8rem #cbbfb1,
        -0.4rem -0.4rem 0.8rem #ffffff,
        inset 0 0 0 transparent,
        inset 0 0 0 transparent;
    box-shadow:
        0.4rem 0.4rem 0.8rem #cbbfb1,
        -0.4rem -0.4rem 0.8rem #ffffff,
        inset 0 0 0 transparent,
        inset 0 0 0 transparent; */
}

.acordeon__container .acordeon-button {
  /* margin: 0 0 1rem; */
  /* padding: 0.2rem; */
  font-size: 1rem;
  color: black;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 1rem;
  background-color: white;
  cursor: pointer;
}
.acordeon__container .acordeon-button:hover {
  /* margin: 0 0 1rem; */
  padding: 0 0.2rem;
  color: rgb(29, 29, 29);
  -webkit-transition: all 0.4s ease;
  transition: all 0.5s ease;
  /* border-radius: 1rem; */
  /* background-color: rgb(207, 196, 196); */
  cursor: pointer;
}

/* .acordeon__container .acordeon-button {
  color: black;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 1rem;
  background-color: #cbbfb1;
} */

.acordeon__container .acordeon-contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  color: #6e6e6e;
}

.acordeon__container .acordeon-bloque.activo .acordeon-contenido {
  max-height: 300px; /* suficiente para el texto */
  /* padding-top: 10px; */
  padding: 12px;
}

.acordeon-cta {
  width: 100%;
  padding: 1rem;
  background-color: #bca68c;
  color: #000;
  text-align: center;
  margin: 20px 0;
  border-radius: 20px;
}
.acordeon-cta p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

/* .acordeon__container section a {
    width: 100%;
    display: block;
    background-color: #ff6f61;
    padding: 1rem;
    text-decoration: none;
    color: #fff;
    border-bottom: thin solid #fff;
}

.acordeon__container section a:hover {
    font-weight: 600;
}

.acordeon__container section p {
    overflow: hidden;
    max-height: 0;
    transition: all .2s ease-in;
    color: #6e6e6e;
}

.acordeon__container section:target p {
    overflow: none;
    max-height: none;
    padding: 1rem;
}
 */

/* SECTION: PROCESS */

.process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Tablet */
@media (max-width: 900px) {
  .process__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .process__container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}

.process__step {
  background-color: #9c8e7f;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  color: #000;
  transition: transform 0.3s ease;
}

.process__step:hover {
  transform: translateY(-5px);
}

.process__step i {
  font-size: 2.2rem;
  color: #f6f2ed;
  margin-bottom: 1rem;
}

.process__step h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.process__step p {
  font-family: "Inter", sans-serif;
  color: #efeaea;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* SECTION 7: FOOTER */
.footer {
  background-color: #211e1c;
  padding: 40px 0;
  line-height: 1.5;
}

.footer-col {
  width: 25%;
  padding: 0 20px;
  /* margin: 10px; */
}

.footer-col h4 {
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col p {
  color: #ffffff;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #ffffff;
  height: 2px;
  box-sizing: border-box;
  width: 100px;
}

.footer-col ul li {
  list-style: none;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 20px;
  text-transform: capitalize;
  text-decoration: none;
  /* font-weight: 300; */
  color: #ffffff;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffffbe;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 50px;
  width: 50px;
  background-color: rgba(0, 0, 0, 0.616);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  border-radius: 50%;
  color: #fff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #6e6e6e;
}

/* FOOTER RESPONSIVE */
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.container {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* gap: 20px; */
  padding: 20px;
  max-width: 1280px;
  margin: auto;
}

.sub-footer {
  font-size: 12px;
  background-color: rgb(115, 101, 101);
  height: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
