/* Tipografías elegantes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Open+Sans:wght@400;600&display=swap');

/* Estilos globales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Banner principal */
.encabezado-vip {
  width: 100%;
  height: 106vh;

background-image: url('../img/bav.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
  padding: 0 2rem;
}

.contenido-vip {
  color: #fff;
  max-width: 900px;
  animation: slideUp 1.5s ease-out;
}

.encabezado-vip h1 {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.encabezado-vip p {
  font-size: 1.5rem;
  font-family: 'Open Sans', sans-serif;
  color: #e0e0e0;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .encabezado-vip h1 {
    font-size: 2.5rem;
  }

  .encabezado-vip p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .encabezado-vip {
    height: 80vh;
    padding: 0 1rem;
  }

  .encabezado-vip h1 {
    font-size: 2rem;
  }

  .encabezado-vip p {
    font-size: 1rem;
  }
}













@media (max-width: 768px) {
  .encabezado-vip {
    height: 60vh; /* menos alto en tablets */
  }

  .encabezado-vip h1 {
    font-size: 2.5rem;
  }

  .encabezado-vip p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .encabezado-vip {
    height: 50vh; /* aún más pequeño en móviles */
    padding: 0 6rem;
  }

  .encabezado-vip h1 {
    font-size: 2rem;
  }

  .encabezado-vip p {
    font-size: 1rem;
  }
}














@media (max-width: 768px) {
  .encabezado-vip {
    height: 70vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}

@media (max-width: 480px) {
  .encabezado-vip {
    height: 70vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0 1rem;
  }
}





@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Playfair+Display:wght@700&display=swap');


/* Sección principal */
.seccion-eleccion {
  padding: 60px 20px;
  background-color: #fafafa;
}

.contenedor-eleccion {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

/* Imagen */
.imagen-eleccion {
  position: relative;
  flex: 1 1 400px;
  animation: fadeInLeft 1.5s ease;
}

.imagen-eleccion img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.experiencia {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #fff;
  color: #f59e0b;
  font-weight: 600;
  padding: 6px 14px;
  border-left: 3px solid #f59e0b;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-size: 0.85rem;
}

/* Contenido */
.texto-eleccion {
  flex: 1 1 500px;
  animation: fadeInRight 1.5s ease;
}

.subtitulo-eleccion {
  color: #f59e0b;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.titulo-eleccion {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.descripcion-eleccion {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

.lista-eleccion {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.lista-eleccion li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #333;
}

.icono-eleccion {
  color: #f59e0b;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Animaciones */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsivo */
@media (max-width: 768px) {
  .contenedor-eleccion {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .seccion-eleccion {
    padding: 40px 15px;
  }

  .titulo-eleccion {
    font-size: 2rem;
  }

  .descripcion-eleccion,
  .lista-eleccion li {
    font-size: 0.95rem;
  }

  .experiencia {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}

@media (max-width: 480px) {
  .titulo-eleccion {
    font-size: 1.8rem;
  }

  .descripcion-eleccion {
    font-size: 0.9rem;
  }

  .contenedor-eleccion {
    gap: 15px;
  }

  .seccion-eleccion {
    padding-bottom: 20px;
  }
}




















.testimonial-slider {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  color: #000;
  font-family: sans-serif;
}

.testimonial-slider h2 {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-slider h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #DAA520; /* dorado */
  margin: 10px auto 30px;
}

.testimonial-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials {
  position: relative;
  height: 220px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 0 20px;
  color: #000;
}

.testimonial.active {
  opacity: 1;
}

.stars {
  color: #DAA520; /* dorado */
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial p {
  font-style: italic;
  line-height: 1.6;
}

.testimonial strong {
  display: block;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dots {
  margin-top: 150px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #DAA520; /* dorado */
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.dot.active,
.dot:hover {
  opacity: 1;
}











.pie-final {
  background-color: #132a41;
  padding: 50px 30px;
}

.bloque-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}

.columna-footer {
  flex: 1 1 220px;
  min-width: 250px;
}

.columna-footer h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.resaltado-footer {
  color: #f89c1c;
}

.columna-footer p {
  font-size: 14px;
  color: #c3c8d0;
  margin-bottom: 15px;
}

.columna-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.columna-footer li {
  font-size: 14px;
  color: #c3c8d0;
  margin: 8px 0;
}

.columna-footer li i {
  margin-right: 8px;
  color: #f89c1c;
}

.redes-sociales-footer i {
  font-size: 16px;
  color: #fff;
  border: 1px solid #ffffff60;
  border-radius: 50%;
  padding: 8px;
  margin-right: 8px;
  transition: 0.3s ease;
}

.redes-sociales-footer i:hover {
  background-color: #f89c1c;
  color: #030f3c;
}

.newsletter-footer {
  display: flex;
  margin-top: 10px;
  max-width: 300px;
}

.newsletter-footer input {
  flex: 1;
  padding: 10px;
  border: none;
  font-size: 14px;
  outline: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.newsletter-footer button {
  background-color: #f89c1c;
  border: none;
  padding: 10px 15px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

@media (max-width: 768px) {
  .bloque-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-footer {
    width: 100%;
  }
}

































.seccion-servicios {
  background: linear-gradient(to bottom, #183654, #132a41);
  padding: 80px 30px;
  color: white;
  text-align: center;
}

.titulo-seccion {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.descripcion-seccion {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.6;
}

.contenedor-tarjetas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.tarjeta-servicio {
  background-color: white;
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 320px;
  flex: 1 1 280px;
  color: #001028;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tarjeta-servicio:hover {
  transform: translateY(-5px);
}

.tarjeta-servicio i {
  font-size: 32px;
  color: #183654;
  margin-bottom: 20px;
}

.tarjeta-servicio h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tarjeta-servicio p {
  font-size: 14px;
  color: #333;
}

.negrita {
  font-weight: 800;
  text-decoration: underline dotted;
}



























.about-section {
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
}

.about-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
}

.about-section h2::after {
  content: '';
  display: block;
  margin: 8px auto;
  width: 40px;
  height: 2px;
  background-color: #ff5e14;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.about-text > p {
  margin-bottom: 30px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.about-feature img {
  width: 32px;
  height: 32px;
  margin-top: 5px;
}

.about-feature h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.about-feature p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-text, .about-image {
    max-width: 100%;
  }

  .about-feature {
    flex-direction: row;
    align-items: flex-start;
  }

  .about-feature img {
    width: 28px;
    height: 28px;
  }
}










.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-banner .text-image-section {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-banner .text-image-section h2 {
  font-size: 2.2rem;
  color: #1b1f3b;
  margin-bottom: 2rem;
}

.contact-banner .text-image-section img {
  max-width: 100%;
  height: auto;
}

.contact-banner .form-section {
  flex: 1 1 45%;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.contact-banner .form-section label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.contact-banner .form-section input,
.contact-banner .form-section textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  transition: border 0.3s;
}

.contact-banner .form-section input:focus,
.contact-banner .form-section textarea:focus {
  border-color: #ff6b61;
  outline: none;
}

.contact-banner .form-section button {
  background-color: #122847;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-banner .form-section button:hover {
  background-color: #1f3657;
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-banner {
    flex-direction: column;
    text-align: center;
  }

  .contact-banner .form-section,
  .contact-banner .text-image-section {
    flex: 1 1 100%;
  }
}






































.catalogue-gallery {
  padding: 4rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  text-align: center;
}

.catalogue-gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1b1f3b;
}

.catalogue-gallery h2 span {
  color: #d4a373; /* oro suave */
}

.catalogue-gallery p {
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1rem;
}

.catalogue-gallery .grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.catalogue-gallery .left-image,
.catalogue-gallery .right-images {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.catalogue-gallery .left-image img,
.catalogue-gallery .right-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.catalogue-gallery .left-image:hover img,
.catalogue-gallery .right-images:hover img {
  transform: scale(1.03);
}

.catalogue-gallery .label {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1b1f3b;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.catalogue-gallery .right-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .catalogue-gallery .grid {
    grid-template-columns: 1fr;
  }

  .catalogue-gallery .right-images {
    grid-template-rows: 1fr 1fr;
  }
}





























.about-company-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  gap: 2rem;
}

/* Parte izquierda: texto */
.about-company-section .info {
  flex: 1 1 40%;
  min-width: 280px;
}

.about-company-section .info h2 {
  font-size: 2.5rem;
  color: #1b1f3b;
  margin-bottom: 1rem;
}

.about-company-section .info h2 span {
  color: #c79e2d;
}

.about-company-section .info p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about-company-section .info .btn {
  background-color: #d4a373;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.about-company-section .info .btn:hover {
  background-color: #c28b60;
}

/* Parte derecha: métricas */
.about-company-section .stats {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.about-company-section .stat-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.about-company-section .stat-box:hover {
  transform: translateY(-5px);
}

.about-company-section .stat-box h3 {
  font-size: 2.2rem;
  color: #d4a373;
  margin-bottom: 0.5rem;
}

.about-company-section .stat-box p {
  font-size: 0.95rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .about-company-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-company-section .info,
  .about-company-section .stats {
    flex: 1 1 100%;
  }
}










.esperar-section {
  background: #132a41; 
  padding: 20px 10px;
  text-align: center;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.esperar-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: 1px;
  /* sin text-transform */
}

.esperar-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.esperar-icon-box {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 10px;
}

.esperar-icon {
  font-size: 40px;
  color: #f0c674; /* tono crema */
  margin-bottom: 20px;
}

.esperar-subtitle {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  /* sin text-transform */
}

























/* ===== CTA ===== */
.solicitar-asesoria {
  background: #132a41;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.asesoria-contenido {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.asesoria-texto {
  flex: 1;
  min-width: 260px;
  text-align: left;
}

.asesoria-texto h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.asesoria-texto p {
  font-size: 16px;
  line-height: 1.5;
}

.asesoria-boton {
  flex-shrink: 0;
}

.asesoria-boton button {
  background: white;
  color: #030f3c;
border-radius: 30px;
  padding: 12px 24px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.asesoria-boton button:hover {
  background: #b8b8b8;
}

/* ===== FAQ ===== */
.faq-seccion {
  background: #ffffff;
  padding: 70px 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.faq-seccion h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  color: #333;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-pregunta {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  text-align: left;
  padding: 15px;
  cursor: pointer;
  color: #333;
  transition: background 0.2s;
}

.faq-pregunta:hover {
  background: #eee;
}

.faq-respuesta {
  display: none;
  padding: 0 15px 15px;
  color: #444;
  font-size: 15px;
}

/* Mostrar respuesta activa */
.faq-item.active .faq-respuesta {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .asesoria-contenido {
    flex-direction: column;
    align-items: flex-start;
  }

  .asesoria-boton {
    align-self: center;
  }
}












.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background-color: #25D366;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
}




























html {
  scroll-behavior: smooth;
}



.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}











.seccion-globalizar {
background: url('../img/ul.png');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  min-height: 100vh;
}

.contenido-globalizar {
  max-width: 700px;
}

.titulo-globalizar {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: 3rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.parrafo-globalizar {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.boton-globalizar {
  background-color: white;
  color: #0a1e46;
  font-weight: bold;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.boton-globalizar:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
  .titulo-globalizar {
    font-size: 2rem;
  }

  .parrafo-globalizar {
    font-size: 1rem;
  }

  .seccion-globalizar {
    text-align: center;
    padding: 40px 20px;
  }

  .contenido-globalizar {
    max-width: 100%;
  }
}