:root {
  --accent:#e91e63;
  --dark:#111;
  --text:#222;
  --bg:lab(99.65% 0.01 -0.01);
  --card:#f8f8f8;
  --max-w:1100px;
  --radius:12px;
}

/* ==============================
   GLOBAL
=================================*/
*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:Inter,system-ui,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  padding-top: 70px; /* altura del header */
}

.wrap{
  width:90%;
  max-width:var(--max-w);
  margin:0 auto;
}

/* ==============================
   HEADER
=================================*/


/* ===== MEGA DROPDOWN ===== */
.mega-dropdown {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 28px 36px;
  display: none;
  gap: 60px;
  z-index: 999;
  min-width: 520px;
}

.mega-dropdown.active {
  display: flex;
}

.dropdown-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.dropdown-col a {
  font-size: 13px;
  text-decoration: none;
  color: #0a74ff;
}

.dropdown-col ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.dropdown-col li {
  margin-bottom: 8px;
}

.dropdown-col li a {
  color: #333;
  font-size: 13px;
  text-decoration: none;
}

.dropdown-col li a:hover {
  color: #0a74ff;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .mega-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    padding: 20px;
    flex-direction: column;
    gap: 30px;
  }
}


/* ===== HEADER BASE ===== */


.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #111;
  padding: 0;
}

.mega-dropdown {
  position: absolute;
  top: 46px;
  left: 0;
  display: none;
  background: #fff;
  padding: 24px 28px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  min-width: 420px;
  gap: 48px;
  z-index: 999;
}

/* Mostrar dropdown al hover */
.has-dropdown:hover .mega-dropdown {
  display: flex;
}

/* Columnas */
.dropdown-col {
  min-width: 180px;
}

.dropdown-col h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.dropdown-col a {
  font-size: 13px;
  color: #0a74ff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}

.dropdown-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-col li a {
  display: block;
  font-size: 13px;
  color: #111;
  padding: 6px 0;
  text-decoration: none;
}

.dropdown-col li a:hover {
  color: #0a74ff;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-wrap {
  max-width: 1300px;
  margin: auto;
  padding: 12px 24px; /* ↓ un poco más compacto */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 26px; /* ↓ más pequeño */
}

/* NAV */
.nav {
  display: flex;
  gap: 22px; /* ↓ menos espacio */
}

.nav a {
  text-decoration: none;
  font-size: 13px; /* ↓ tamaño real tipo Samsung */
  color: #111;
  font-weight: 500;
}

/* ACCIONES */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.start-free {
  background: #0a74ff;
  color: #fff;
  padding: 7px 14px; /* ↓ más compacto */
  border-radius: 18px;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

/* BANDERA */
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.lang-btn img {
  width: 20px; /* ↓ */
  height: auto;
  display: block;
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 12px;
  }

  .start-free {
    padding: 6px 12px;
    font-size: 11px;
  }

  .logo img {
    height: 24px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .header-wrap {
    padding: 10px 16px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    border-top: 1px solid #eee;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    font-size: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .start-free {
    font-size: 11px;
    padding: 6px 12px;
  }

  .lang-btn img {
    width: 18px;
  }
}






/* ==============================
   HERO
=================================*/
.hero {
  padding: 80px 20px;
  background: #fff;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO */
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  color: #666;
  font-weight: 600;
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 600;
  margin: 16px 0;
}

.hero-text p {
  font-size: 16px;
  color: #444;
  max-width: 520px;
}

/* BOTONES */
.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.btn {
  padding: 12px 22px;
  border-radius: 22px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.btn-light {
  background: #e5e5e5;
  color: #000;
}

.btn-dark {
  background: #000;
  color: #fff;
}

/* TEXTO PEQUEÑO */
.hero-trusted {
  font-size: 13px;
  color: #666;
}

/* VIDEO */
.hero-media video {
  width: 100%;
  border-radius: 18px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-text p {
    margin: auto;
  }
}





/* ==============================
     CARRUSEL
=================================*/

.carousel {
  position: relative;
  width: 85%;
  max-width: 1100px;
  margin: 60px auto;
}

/* VENTANA REAL DEL CARRUSEL (LO QUE SE VE) */
.carousel-window {
  overflow: hidden;   /* ← AQUÍ SE OCULTA TODO */
  width: 100%;
  border-radius: 20px;
}

/* TRACK */
.carousel-track {
  display: flex;
  transition: transform .4s ease-in-out;
}

/* CADA SLIDE MIDE EXACTAMENTE EL ANCHO VISIBLE */
.slide {
  flex: 0 0 100%;        /* ← LA CLAVE */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  box-sizing: border-box;
  background: #fff;
}

/* TEXTO */
.text {
  width: 50%;
}

.text h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.text p {
  font-size: 16px;
  line-height: 1.6;
}

/* IMAGEN */
.slide img {
  width: 45%;
  border-radius: 14px;
}

/* FLECHAS – SIEMPRE AFUERA DEL SLIDE */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #ccc;
  padding: 12px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.arrow.left { left: -40px; }   /* ← FUERA DEL CONTENEDOR */
.arrow.right { right: -40px; } /* ← FUERA DEL CONTENEDOR */

/* RESPONSIVO */
@media (max-width: 900px) {
  .slide { flex-direction: column; text-align: center; }
  .text, .slide img { width: 90%; }
  .arrow.left { left: -25px; }
  .arrow.right { right: -25px; }
}

/* ==============================
     BOTON PARA IR A OTRA PAGINA
=================================*/

.hero-actions {
  width: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
}

.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}



/* ==============================
     zic zac seccion
=================================*/


.zigzag-section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.zigzag-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.zigzag-item.reverse {
  flex-direction: row-reverse; /* alterna imagen/texto */
}

.zigzag-item .text {
  flex: 1;
}

.zigzag-item .text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.zigzag-item .text p {
  font-size: 16px;
  color: #555;
}

.zigzag-item .image {
  flex: 1;
}

.zigzag-item .image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media(max-width: 768px) {
  .zigzag-item, .zigzag-item.reverse {
    flex-direction: column;
    text-align: center;
  }

  .zigzag-item .text {
    margin-bottom: 20px;
  }
}


/* ==============================
     seccion de area de texto encimado
=================================*/
.galeria-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  width: 80%;              /* antes 100% → ahora más chico */
  max-width: 1200px;       /* tamaño elegante */
  margin: 60px auto;       /* espacio arriba y abajo */
  padding: 20px 0;         /* pequeño padding interno */
}

.columna-izquierda {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 48%;              /* reducimos un poco */
}

.columna-derecha {
  width: 48%;              /* igual que izquierda */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* imágenes */
.img-horizontal {
  width: 100%;
  height: 240px;           /* más pequeño */
  object-fit: cover;
  border-radius: 12px;
}

.img-vertical {
  width: 100%;
  height: 500px;           /* igual a suma de horizontales */
  object-fit: cover;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .galeria-container {
    width: 95%;
    flex-direction: column;
  }

  .columna-izquierda,
  .columna-derecha {
    width: 100%;
  }

  .img-horizontal,
  .img-vertical {
    height: auto;
  }
}
.img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.card-texto {
  position: absolute;
  bottom: 20px;

  color: white;
  width: fit-content; /* Hace el cuadro pequeño */
  max-width: 180px;   /* Controla el tamaño */
}

.card-texto {
  position: absolute;
  bottom: 20px;
  color: white;
  width: fit-content;
  max-width: 180px;
}

/* Horizontal izquierda */
.texto-izquierda {
  left: 20px;
  text-align: left;
}

/* Horizontal derecha */
.texto-derecha {
  right: 20px;
  text-align: right;
}

/* ⬅️⬆️ TEXTO A TODO LO ANCHO SOLO EN LA IMAGEN VERTICAL */
.texto-vertical-full {
  left: 20px;
  right: 20px;
  width: auto;      /* Ocupar todo el ancho */
  max-width: none;
  text-align: left; /* Puedes cambiar a center o right si quieres */
}

.card-texto h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.card-texto p {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
}


/* ==============================
     BOTONES GENERALES
=================================*/
.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  border: 0;
  background:var(--card);
  color:var(--text);
  cursor:pointer;
  transition:.25s;
}

.btn:hover{ transform:translateY(-2px); }

.btn-primary{
  background:var(--accent);
  color:#fff;
}

.btn-primary:hover{
  background:#c2185b;
}

.btn-outline{
  background:transparent;
  border:2px solid var(--accent);
  color:var(--accent);
}


.btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #333;
}


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

.btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 18px 40px;
  border-radius: 35px;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
  border: 3px solid #ffffff; /* Borde blanco */
}

.btn:hover {
  background-color: #333;
  border-color: #f0f0f0; /* Cambia el borde al pasar el mouse */
}



.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 35px;
    margin-bottom: 35px;
}

.btn-main {
    background: #000;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn-main:hover {
    opacity: 0.8;
}


/* ==============================
   CARRUSEL 2
=================================*/
.miNuevoCarrusel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 40px auto;
}

/* Ventana que oculta las demás imágenes */
.miNuevoCarrusel {
  overflow: hidden;
}

.trackNuevo {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.miSlide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.slideContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  width: 100%;
}

.miTexto {
  width: 50%;
}

.slideContent img {
  width: 50%;
  max-height: 450px;
  object-fit: contain;
}

/* Botones flecha */
.btnArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00000080;
  border: none;
  color: white;
  font-size: 40px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
}

.btnLeft {
  left: -60px;
}

.btnRight {
  right: -60px;
}

.btnArrow:hover {
  background: #000000cc;
}

/* Responsivo */
@media (max-width: 768px) {
  .slideContent {
    flex-direction: column;
    text-align: center;
  }

  .miTexto, .slideContent img {
    width: 100%;
  }

  .btnLeft {
    left: -20px;
  }

  .btnRight {
    right: -20px;
  }
}




/* ==============================
   CTA FINAL + FOOTER
=================================*/

.centered-text {
  text-align: center;  /* centra el texto horizontalmente */
  width: 100%;         /* ocupa todo el ancho disponible */
  font-size: 32px;     /* tamaño de fuente, ajustable */
  color: #333;         /* color del texto */
  margin-top: 50px;    /* opcional: espacio desde arriba */
}


.faq-container {
  max-width: 900px;
  margin: 40px auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.faq {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  padding: 22px;
  font-size: 18px;
  background: #f0f0f0;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background: #e8e8e8;
}

.icon {
  font-size: 22px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.show {
  padding: 20px;
  max-height: 300px;
}




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

.site-footer {
  background: #0e0e0e;
  color: #cfcfcf;
  padding: 80px 30px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

/* BOTÓN */
.footer-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  border-radius: 30px;
  background: #fff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

/* REDES SOCIALES */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.social-links a:hover {
  background: #fff;
}

.social-links a:hover svg {
  fill: #000;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-btn {
    margin: auto;
  }
}

