* {
  box-sizing: border-box;
}
body {
  font-size: 14px;
  font-family: Barlow, sans-serif;
  background: rgba(17, 34, 54, 1);
}
.v483_9 {
  width: 100%;
  height: auto;
  background: rgba(17, 34, 54, 1);
  opacity: 1;
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
/* asegúrate que el nav quede por encima y se pueda clicar */
.v483_10 {
  position: relative; /* si ya es absolute, mantenerlo; lo importante es z-index */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

/* botón hamburguesa por defecto oculto en desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Alinea la lista horizontal en desktop */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0 auto; /* esto lo centra dentro del flex */
  padding: 0;
  align-items: center;
  flex: 1; /* ocupa espacio disponible */
  justify-content: center; /* centra los items */
}

.nav-links a.active {
  background: rgba(192, 160, 85, 1); /* dorado */
  color: #262626; /* texto oscuro */
  padding: 8px 14px; /* que parezca botón */
  border-radius: 6px;
  font-weight: 600;
}

/* Hacemos que .v483_12 luzca como botón si no lo estaba */
.v483_12.contacto-desktop {
  background: rgba(192, 160, 85, 1);
  padding: 12px 18px;
  border-radius: 8px;
  color: #262626;
  font-weight: 600;
  text-decoration: none;
}

/* en pantallas grandes ocultar el contacto mobile */
.contacto-mobile {
  display: none;
}

/* seguridad: al hacer click en un link, que el menú se cierre */
.nav-links a {
  text-decoration: none;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  /* ocultar la versión desktop del botón contacto en móvil */
  .contacto-desktop {
    display: none;
  }

  /* estilos para nav móvil (oculto por defecto) */
  .nav-links {
    display: none; /* oculto en móvil hasta que se agregue .show */
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    background: rgba(6, 13, 25, 0.98);
    padding: 16px;
    border-radius: 8px;
    flex-direction: column;
    gap: 12px;
  }

  /* versión mobile del "Contáctanos" */
  .contacto-mobile {
    display: block;
    margin-top: 6px;
  }

  /* cuando el JS agrega .show, forzamos que se vea */
  .nav-links.show {
    display: flex !important;
  }

  /* El nav conserva tu estilo original */
  .v483_10 {
    width: 100%;
    padding: 20px 20px;
  }
  /* En móvil: botón de escritorio oculto */
  .contacto-desktop {
    display: none;
  }
  /* En móvil: el botón aparece dentro del nav */
  .contacto-mobile {
    display: block;
    margin-top: 10px;
    background: rgba(192, 160, 85, 1);
    padding: 14px 24px;
    border-radius: 8px;
    text-align: center;
  }
  .contacto-mobile a {
    color: rgba(38, 38, 38, 1);
    font-weight: 600;
    text-decoration: none;
    display: block;
  }

  .v483_11 {
    width: 100px;
    height: 60px;
  }

  .contacto-mobile {
    display: none;
  }
}

/* Logo */
.v483_11 {
  display: inline-block;
  width: 120px;
  height: 70px;
  background: url("../images/v483_11.png") no-repeat center center / contain;
}

/* Botón contacto desktop a la derecha */
.v483_12.contacto-desktop {
  background: rgba(192, 160, 85, 1);
  padding: 12px 18px;
  border-radius: 8px;
  color: #262626;
  font-weight: 600;
  text-decoration: none;
  margin-left: auto; /* lo empuja a la derecha */
}

/* Por defecto, el botón de escritorio se muestra y el del menú oculto */
.contacto-desktop {
  display: block;
}

/* Sección principal */
.hero.v483_22 {
  width: 100%;
  min-height: 100vh;
  background: url("../images/v483_22.png") center/cover no-repeat;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  position: relative;
}

/* Contenido */
.hero-content.v483_23 {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Título */
.hero-title.v483_25 {
  color: #fff;
  font-family: Barlow, sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 6vw, 96px); /* Escala en mobile */
  line-height: 1.2;
  margin: 0;
}

/* Tags */
.hero-tags.v483_26 {
  background: rgba(65, 72, 82, 1);
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
}

.hero-tags .tag {
  background: #0d0c11;
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  white-space: nowrap;
}

/* Botón */
.btn-contact.v483_39 {
  display: inline-block;
  background: rgba(192, 160, 85, 1);
  color: #262626;
  font-family: Barlow, sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}
.btn-contact:hover {
  background: #d4b15d;
}

/* Imagen */
.hero-image.v483_41 {
  width: 100%;
  height: 300px;
  background: url("../images/v483_41.png") center/cover no-repeat;
  margin-top: 40px;
  border-radius: 12px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero-title.v483_25 {
    font-size: 40px;
  }

  .hero-tags.v483_26 {
    font-size: 16px;
    padding: 15px 20px;
  }

  .btn-contact.v483_39 {
    width: 100%;
    text-align: center;
  }
}

/* Sección principal */
.producto.v483_5101 {
  width: 100%;
  background: #112236;
  padding: 60px 20px;
  color: #fff;
  border-radius: 16px;
}

/* Cabecera */
.producto-header.v483_5102 {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 60px;
  background: #050000 url("../images/v483_5326.png") center/cover no-repeat;
  padding: 50px;
  margin-bottom: 40px;
}

.v483_5103 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 20px;
}

.v483_5104 {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  color: #e6e6e6;
}

/* Contenido */
.producto-content.v483_5105 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Imagen */
.producto-img.v483_5106 {
  background: #1a2940;
  border-radius: 16px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.producto-img.v483_5106 i {
  font-size: 200px;    /* tamaño del ícono */
  color: #c0a055;     /* color dorado */
}


/* Descripción */
.producto-descripcion.v483_5108 {
  background: #1a2940;
  padding: 30px;
  border-radius: 24px;
}

.v483_5111 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

/* Planes */
.producto-planes.v483_5113 {
  background: #1a2940;
  padding: 30px;
  border-radius: 24px;
}

.v483_5116 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.plan {
  background: #c0a055;
  color: #060d19;
  padding: 15px;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .producto-content.v483_5105 {
    grid-template-columns: 1fr;
  }
}

.v483_5122 {
  width: 204px;
  color: rgba(6, 13, 25, 1);
  position: absolute;
  top: 18px;
  left: 137px;
  font-family: Barlow;
  font-weight: Medium;
  font-size: 18px;
  opacity: 1;
  text-align: left;
}
.name {
  color: #fff;
}

.services {
  width: 100%;
  padding: 60px 20px;
  background: url("../images/v483_5125.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.services-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 60px;
  background: #050000 url("../images/v483_5326.png") center/cover no-repeat;
  padding: 50px;
}

.services-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-header p {
  font-size: 1.1rem;
  color: #e6e6e6;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: #18283f;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 48px;
  color: rgba(192, 160, 85, 1); /* dorado */
  margin-bottom: 16px;
}

.service-icon img {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #c0a055;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  color: #f2f2f2;
  margin-bottom: 1.5rem;
}

.service-card .btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  background: rgba(192, 160, 85, 1);
  color: #262626;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}

.service-card .btn:hover {
  background: #b89a4d;
}

.btn {
  display: inline-block;
  background: #262626;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #444;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 2rem;
  }

  .services-header p {
    font-size: 1rem;
  }
}

.v483_5170 {
  width: 73px;
  color: rgba(255, 255, 255, 1);
  position: absolute;
  top: 18px;
  left: 159px;
  font-family: Barlow;
  font-weight: Medium;
  font-size: 18px;
  opacity: 1;
  text-align: left;
}
.testimonios {
  width: 100%;
  color: #e6e6e6;
  border-radius: 32px;
  padding: 3rem 1rem;
}

.testimonios .intro {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 3rem;
  background: #050000 url("../images/v483_5326.png") center/cover no-repeat;
  padding: 50px;
}

.testimonios .intro h2 {
  font-size: 2rem;
  font-family: Barlow, sans-serif;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.testimonios .intro p {
  font-size: 1rem;
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.card {
  background: rgba(20, 20, 20, 0.9);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card .titulo {
  font-size: 1.25rem;
  font-weight: 500;
  color: #c0a055;
  margin-bottom: 1rem;
}

.card .texto {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.card .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.perfil {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 50px;
  height: 50px;
  background: #444;
  border-radius: 50%;
}

.nombre {
  font-weight: 600;
  color: #fff;
  display: block;
}

.cargo {
  font-size: 0.9rem;
  color: #ccc;
}

.btn {
  background: #222;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.btn:hover {
  background: #444;
}

/* Responsive */
@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonios .intro h2 {
    font-size: 2.5rem;
  }

  .card .titulo {
    font-size: 1.5rem;
  }
}

.faq-section {
  width: 100%;
  color: #fff;
  padding: 80px 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
  text-align: center;
  max-width: 100%;
  margin: 0 auto 60px;
  background: #050000 url("../images/v483_5326.png") center/cover no-repeat;
  padding: 50px;
}

.faq-header h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.faq-header p {
  font-size: 1rem;
  color: #e6e6e6;
}

.faq-header a {
  color: #c0a055;
  text-decoration: none;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.faq-item {
  cursor: pointer;
  background: #121212;
  border-radius: 20px;
  padding: 20px;
  flex: 1 1 calc(50% - 20px);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.faq-number {
  min-width: 60px;
  height: 60px;
  background: linear-gradient(rgba(36, 36, 36, 1), rgba(36, 36, 36, 0));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #c0a055;
}

/* ---------- FAQ: toggle (add at end of main.css) ---------- */
.faq-content h3 {
  position: relative;
  padding-right: 28px; /* espacio para la flecha */
  margin: 0;
}

/* flecha a la derecha */
.faq-content h3::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 2px;
  transform-origin: center;
  transition: transform 0.25s ease;
  color: #c0a055;
  font-size: 1.05rem;
}

/* respuesta oculta por defecto */
.faq-content p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin 0.2s;
  margin: 0;
}

/* cuando está abierto: margen y la flecha rota */
.faq-item.open .faq-content p {
  margin-top: 10px;
}

.faq-item.open .faq-content h3::after {
  transform: rotate(180deg);
}

/* accesibilidad visual: foco en el título */
.faq-content h3:focus {
  outline: 3px solid rgba(192, 160, 85, 0.25);
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-number {
    min-width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .faq-content h3 {
    font-size: 1rem;
  }

  .faq-content p {
    font-size: 0.9rem;
  }
}

.v483_5324 {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  position: absolute;
  top: 6px;
  left: 7px;
}
.name {
  color: #fff;
}
.choose-us {
  width: 100%;
  color: #fff;
  padding: 80px 20px;
}

.choose-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 60px;
  background: #050000 url("../images/v483_5326.png") center/cover no-repeat;
  padding: 50px;
}

.choose-header h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.choose-header p {
  font-size: 1.1rem;
  color: #e6e6e6;
}

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

.choose-card {
  background: rgba(18, 18, 18, 0.9);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.choose-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(rgba(36, 36, 36, 1), rgba(36, 36, 36, 0));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #c0a055;
}

.choose-card h3 {
  font-size: 1.3rem;
  color: #fff;
}

.choose-card p {
  font-size: 1rem;
  color: #e6e6e6;
  line-height: 1.5;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .choose-header h2 {
    font-size: 2rem;
  }

  .choose-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .choose-header h2 {
    font-size: 1.6rem;
  }
  .choose-header p {
    font-size: 0.95rem;
  }
  .choose-card h3 {
    font-size: 1.1rem;
  }
  .choose-card p {
    font-size: 0.9rem;
  }
}

body {
  font-family: "Barlow", sans-serif;
  margin: 0;
  background: #000;
  color: #fff;
}

.contacto {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 20px;
}

.contacto-header {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.contacto-logo {
  width: 150px;
  margin-bottom: 20px;
}

.contacto-texto h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contacto-texto p {
  font-size: 1rem;
  color: #e6e6e6;
  margin-bottom: 20px;
}

.btn-primario {
  background: #c0a055;
  color: #1a1a1a;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-primario:hover {
  background: #b09045;
}

/* Formulario */
.contacto-form {
  max-width: 900px;
  margin: auto;
  background: rgba(36, 36, 36, 0.8);
  padding: 30px;
  border-radius: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
}

input,
textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #222;
  color: #fff;
  font-size: 1rem;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.opciones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rangos {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #ccc;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contacto-texto h2 {
    font-size: 1.5rem;
  }

  .btn-primario {
    width: 100%;
  }
}

.footer {
  background: #1a1a1a;
  color: #e6e6e6;
  padding: 40px 20px;
  font-family: "Barlow", sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.footer-logo img {
  width: 150px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}

.footer-nav a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #c0a055;
}

.footer-social {
  text-align: center;
  color: white;
}

.footer-social .icons {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.footer-social .icons a {
  color: white;
  font-size: 22px;
  transition: color 0.3s;
}

.footer-social .icons a:hover {
  color: rgba(192, 160, 85, 1); /* dorado */
}

.footer-bottom {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.contact-info p {
  margin: 3px 0;
  font-size: 14px;
  color: #ccc;
}

.copy {
  font-size: 14px;
  color: #999;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-social {
    text-align: center;
  }
  .footer-social .icons {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
