/* ======== TRADERS LATAM | Estilos Base ======== */

:root {
  --azul: #00b3ff;
  --azul-oscuro: #03121c;
  --verde: #00ff9f;
  --gris: #a8b8c5;
  --blanco: #eaf2f7;
  --negro: #000;
  --fuente: 'Poppins', Arial, sans-serif;
}

body {
  background: radial-gradient(circle at top, #071a27 0%, #010a12 100%);
  color: var(--blanco);
  font-family: var(--fuente);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/* ===============================
   HEADER COMPACTO TRADERS LATAM
   =============================== */

header {
  background: rgba(0, 10, 20, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 179, 255, 0.2);
  text-align: center;
  padding: 10px 0;
  min-height: 100px; /* 🔹 Compacto pero mantiene balance visual */
}

/* 🔹 Contenedor centrado */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* 🔹 Logo */
.logo img {
  width: 80px; /* 🔹 tamaño reducido */
  height: auto;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 6px var(--azul));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* 🔹 Texto debajo del logo */
.logo h1 {
  font-size: 22px;
  color: var(--azul);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.logo-subtext,
.logo p {
  font-size: 13px;
  color: var(--blanco);
  margin-top: 2px;
}

/* 🔹 Reduce el espacio del primer bloque (hero) */
.hero {
  padding-top: 25px;
  padding-bottom: 40px;
}

/* ======= HERO ======= */
.hero {
  text-align: center;
  padding: 60px 20px;
  animation: fadeIn 1.2s ease-in;
}

.hero h2 {
  color: var(--verde);
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  color: var(--gris);
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--azul);
  color: var(--negro);
  box-shadow: 0 0 15px rgba(0, 179, 255, 0.4);
}

.btn.primary:hover {
  background: var(--verde);
  color: #03121c;
}

.btn.secondary {
  border: 1px solid var(--azul);
  color: var(--blanco);
  background: transparent;
}

.btn.secondary:hover {
  background: var(--azul);
  color: var(--negro);
}

/* ======= INFO ======= */
.info {
  text-align: center;
  padding: 40px 25px;
  border-top: 1px solid rgba(0, 179, 255, 0.15);
}

.info h3 {
  color: var(--azul);
  font-size: 22px;
}

.info p {
  color: var(--gris);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ======= FOOTER ======= */
footer {
  text-align: center;
  padding: 20px;
  color: var(--gris);
  border-top: 1px solid rgba(0, 179, 255, 0.15);
  font-size: 14px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======= Responsive ======= */
@media (max-width: 600px) {
  .hero h2 { font-size: 28px; }
  .logo img { width: 90px; }
  .logo h1 { font-size: 22px; }
  .tag { font-size: 12px; }
}

/* ======= PLANES ======= */
.planes {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto 20px;
}

.plan {
  background: rgba(0, 10, 20, 0.6);
  border: 1px solid rgba(0, 179, 255, 0.25);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform .2s ease, box-shadow .2s ease, border .2s ease;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  border-color: rgba(0, 255, 159, 0.4);
}

.plan h3 {
  margin-top: 0;
  color: var(--azul);
  font-size: 22px;
}

.plan .precio {
  font-size: 30px;
  color: var(--verde);
  margin: 8px 0 14px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  color: var(--gris);
  line-height: 1.6;
}

.plan.destacado {
  border-color: var(--verde);
  box-shadow: 0 0 20px rgba(0,255,159,0.18);
}

@media (max-width: 900px) {
  .planes { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .planes { grid-template-columns: 1fr; }
}

/* ======= LIMPIEZA DE DUPLICADOS ======= */

/* Solo oculta el logo blanco duplicado, mantiene el azul */
img[alt="Traders Latam Logo Blanco"],
img[alt="Logo Blanco"],
.logo-blanco,
header img[src*="logo_blanco"],
header img[src*="white"] {
  display: none !important;
}
/* ===============================
   PLANES Y CUENTAS | NUEVA VERSIÓN
   =============================== */
.planes-section {
  padding: 60px 20px;
  text-align: center;
  color: var(--blanco);
  background: radial-gradient(circle at top, #071a27 0%, #010a12 100%);
}

.planes-section h2 {
  font-size: 34px;
  color: var(--azul);
  text-shadow: 0 0 15px var(--azul);
  margin-bottom: 40px;
}

/* === CONTENEDOR GENERAL === */
.planes-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

/* cada columna (FIT, PRO, ELITE) */
.plan-column {
  background: rgba(3, 18, 28, 0.7);
  border: 1px solid rgba(0, 179, 255, 0.25);
  border-radius: 12px;
  padding: 20px;
  scroll-snap-align: start;
  min-width: 340px;
}

.tier-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--azul);
  text-shadow: 0 0 10px var(--azul);
  text-transform: uppercase;
}

.tier-title span {
  display: block;
  color: var(--gris);
  font-size: 14px;
}

/* === TARJETAS === */
.plan-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.plan-card {
  background: rgba(0, 10, 20, 0.6);
  border: 1px solid rgba(0, 179, 255, 0.2);
  border-radius: 10px;
  padding: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 179, 255, 0.1);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0, 179, 255, 0.4);
}

.plan-card h4 {
  margin: 0;
  color: var(--azul);
  font-size: 20px;
}

.plan-price {
  color: var(--verde);
  font-size: 22px;
  font-weight: 600;
  margin: 8px 0;
}

.plan-points {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  color: var(--gris);
  font-size: 14px;
  line-height: 1.5;
}

.plan-btn {
  display: inline-block;
  background: var(--azul);
  color: #03121c;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 179, 255, 0.4);
}

.plan-btn:hover {
  background: var(--verde);
  color: #03121c;
  box-shadow: 0 0 20px rgba(0, 255, 159, 0.5);
}

/* === DIFERENCIAS POR NIVEL === */
.tier-fit .plan-card {
  border-color: var(--verde);
  box-shadow: 0 0 10px rgba(0, 255, 159, 0.2);
}

.tier-pro .plan-card {
  border-color: var(--azul);
  box-shadow: 0 0 10px rgba(0, 179, 255, 0.2);
}

.tier-elite .plan-card {
  border-color: #ffcc00;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .planes-wrap {
    display: flex;
    overflow-x: auto;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .plan-column {
    min-width: 85%;
  }

  .tier-title {
    font-size: 20px;
  }

  .plan-card h4 {
    font-size: 18px;
  }
}
/* ======= AJUSTE DEL LOGO PRINCIPAL ======= */
header {
  padding: 20px 10px; /* altura más compacta */
}

.logo-container {
  max-width: 90px;
  margin: 0 auto;
  text-align: center;
}

.logo-container img {
  width: 120px;
  height: auto;
}

.logo-text {
  font-size: 22px;
  color: var(--azul);
  margin: 6px 0 0;
  letter-spacing: 1px;
}

.logo-subtext {
  color: var(--gris);
  font-size: 14px;
  margin-top: 0px;
}
/* ======= CENTRADO PERFECTO DEL LOGO ======= */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* ===============================
   ABOUT / OUR MISSION SECTION
   =============================== */
.about-section {
  padding: 80px 20px;
  background: rgba(0, 10, 20, 0.7);
  text-align: center;
  border-top: 1px solid rgba(0, 179, 255, 0.15);
}

.about-section h2 {
  font-size: 32px;
  color: var(--azul);
  text-shadow: 0 0 15px rgba(0, 179, 255, 0.4);
  margin-bottom: 40px;
}

.about-section h2 span {
  color: var(--verde);
  text-shadow: 0 0 10px rgba(0, 255, 159, 0.3);
}

/* === Texto descriptivo bilingüe === */
.about-content {
  max-width: 900px;
  margin: 0 auto 50px;
  color: var(--gris);
  font-size: 17px;
  line-height: 1.7;
}

.about-content p {
  margin-bottom: 18px;
}

/* === Destacados === */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.highlight {
  background: rgba(3, 18, 28, 0.8);
  border: 1px solid rgba(0, 179, 255, 0.25);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 179, 255, 0.1);
}

.highlight:hover {
  transform: translateY(-5px);
  border-color: var(--verde);
  box-shadow: 0 0 25px rgba(0, 255, 159, 0.25);
}

.highlight h3 {
  color: var(--azul);
  margin-bottom: 10px;
  font-size: 20px;
  text-shadow: 0 0 10px rgba(0, 179, 255, 0.4);
}

.highlight p {
  color: var(--gris);
  font-size: 15px;
  line-height: 1.5;
}

/* === Responsive === */
@media (max-width: 900px) {
  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-section h2 {
    font-size: 26px;
  }

  .about-content {
    font-size: 15px;
  }
}
/* ===============================
   PLANES.HTML | Estilos exclusivos
   =============================== */

/* Fondo con gradiente sutil y animación de entrada */
body {
  background: radial-gradient(circle at top, #04131f 0%, #000a12 100%);
  animation: fadeInPlanes 0.8s ease-in;
}

@keyframes fadeInPlanes {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Encabezado de esta página */
.hero h2 {
  font-size: 34px;
  color: var(--verde);
  text-shadow: 0 0 18px rgba(0, 255, 159, 0.4);
  margin-bottom: 10px;
}

.hero p {
  color: var(--gris);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Ajuste del bloque de planes */
.planes-section {
  padding: 40px 20px 80px;
  text-align: center;
}

.planes-section h2 {
  color: var(--azul);
  font-size: 30px;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(0, 179, 255, 0.4);
}

/* Glow y animación suave al cargar las tarjetas */
.plan-card {
  opacity: 0;
  transform: translateY(20px);
  animation: showCard 0.6s ease forwards;
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes showCard {
  to { opacity: 1; transform: translateY(0); }
}

/* Botón de volver */
footer a.btn.secondary {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a.btn.secondary:hover {
  background: var(--azul);
  color: var(--negro);
  box-shadow: 0 0 15px rgba(0, 179, 255, 0.5);
}
/* ===============================
   NAVBAR GLOBAL TL (ajuste centrado y compacto)
   =============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 10, 20, 0.85);
  border-bottom: 1px solid rgba(0, 179, 255, 0.25);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 30px; /* 🔹 Más delgada */
  z-index: 999;
  height: 58px; /* 🔹 Menor altura general */
}

/* 🔹 Ajuste del logo */
.nav-logo img {
  width: 60px; /* 🔹 Más pequeño */
  filter: drop-shadow(0 0 6px var(--azul));
}

/* 🔹 Centrado más natural de los botones */
.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
  flex: 1;
}

.nav-links li button {
  background: transparent;
  border: 1px solid rgba(0, 179, 255, 0.3);
  color: var(--blanco);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-links li button:hover {
  background: var(--azul);
  color: #03121c;
  box-shadow: 0 0 10px rgba(0, 179, 255, 0.5);
}

/* 🔹 Evita que tape el contenido */
body {
  padding-top: 55px;
}

/* 🔹 Responsive */
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 5px;
  }

  .nav-logo img {
    width: 50px;
  }
}
/* ===============================
   SECCIÓN NOSOTROS / ABOUT
   =============================== */

.about-hero {
  text-align: center;
  padding: 90px 25px 40px;
  background: radial-gradient(circle at top, #03121c 0%, #010a12 100%);
  color: var(--blanco);
  animation: fadeIn 1s ease-in;
}

.about-hero h1 {
  color: var(--azul);
  font-size: 36px;
  margin-bottom: 15px;
}

.about-hero p {
  color: var(--gris);
  font-size: 17px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-values {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 40px 20px 80px;
}

.value-card {
  background: rgba(0, 10, 20, 0.7);
  border: 1px solid rgba(0, 179, 255, 0.25);
  border-radius: 12px;
  width: 280px;
  text-align: center;
  padding: 25px 18px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--verde);
  box-shadow: 0 10px 25px rgba(0,255,159,0.3);
}

.value-card h3 {
  color: var(--azul);
  font-size: 20px;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--gris);
  font-size: 15px;
  line-height: 1.6;
}
/* ===============================
   SECCIÓN FAQ / PREGUNTAS FRECUENTES
   =============================== */

.faq-hero {
  text-align: center;
  padding: 90px 25px 40px;
  background: radial-gradient(circle at top, #03121c 0%, #010a12 100%);
  color: var(--blanco);
  animation: fadeIn 1s ease-in;
}

.faq-hero h1 {
  color: var(--azul);
  font-size: 36px;
  margin-bottom: 15px;
}

.faq-hero p {
  color: var(--gris);
  font-size: 17px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  background: rgba(0, 10, 20, 0.7);
  border: 1px solid rgba(0, 179, 255, 0.25);
  border-radius: 12px;
  padding: 20px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.faq-item:hover {
  transform: translateY(-5px);
  border-color: var(--verde);
  box-shadow: 0 10px 25px rgba(0,255,159,0.3);
}

.faq-item h3 {
  color: var(--azul);
  margin-bottom: 10px;
  font-size: 20px;
}

.faq-item p {
  color: var(--gris);
  font-size: 15px;
  line-height: 1.6;
}
/* ===============================
   SECCIÓN CONTACTO
   =============================== */

.contact-hero {
  text-align: center;
  padding: 90px 25px 40px;
  background: radial-gradient(circle at top, #03121c 0%, #010a12 100%);
  color: var(--blanco);
  animation: fadeIn 1s ease-in;
}

.contact-hero h1 {
  color: var(--azul);
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-hero p {
  color: var(--gris);
  font-size: 17px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 50px 25px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

/* FORMULARIO */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: rgba(0, 10, 20, 0.7);
  border: 1px solid rgba(0, 179, 255, 0.25);
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.contact-form label {
  display: block;
  color: var(--blanco);
  font-weight: 600;
  margin-bottom: 5px;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid rgba(0, 179, 255, 0.3);
  background: rgba(3, 18, 28, 0.7);
  color: var(--blanco);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--verde);
}

.contact-form .btn.primary {
  width: 100%;
  font-size: 16px;
  padding: 12px;
}

/* INFORMACIÓN LATERAL */
.contact-info {
  flex: 0.6;
  min-width: 260px;
  color: var(--gris);
  background: rgba(0, 10, 20, 0.7);
  border: 1px solid rgba(0, 179, 255, 0.25);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.contact-info h3 {
  color: var(--azul);
  margin-bottom: 15px;
  text-align: center;
}

.contact-info p {
  margin: 8px 0;
  text-align: center;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 800px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form, .contact-info {
    width: 100%;
    max-width: 500px;
  }
}
/* ===============================
   SECCIÓN NOSOTROS
   =============================== */
.about-hero {
  text-align: center;
  padding: 100px 20px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h2 {
  color: var(--azul);
  font-size: 32px;
  margin-bottom: 15px;
}

.about-hero p {
  color: var(--gris);
  font-size: 17px;
  line-height: 1.6;
}

.resaltado {
  color: var(--verde);
}

.about-values {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 40px 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  flex: 1;
  min-width: 260px;
  background: rgba(0, 10, 20, 0.6);
  border: 1px solid rgba(0, 179, 255, 0.25);
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform .2s ease, border .2s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--verde);
}

.value-card h3 {
  color: var(--azul);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--gris);
  font-size: 15px;
  line-height: 1.5;
}
/* ===============================
   SECCIÓN FAQ
   =============================== */
.faq-hero {
  text-align: center;
  padding: 100px 20px 30px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-hero h2 {
  color: var(--azul);
  font-size: 32px;
  margin-bottom: 15px;
}

.faq-hero p {
  color: var(--gris);
  font-size: 17px;
  line-height: 1.6;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.faq-item {
  background: rgba(0, 10, 20, 0.6);
  border: 1px solid rgba(0, 179, 255, 0.25);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--verde);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--azul);
  font-size: 17px;
  font-weight: 600;
  padding: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 179, 255, 0.05);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 18px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 18px 18px;
}

.faq-answer p {
  color: var(--gris);
  font-size: 15px;
  line-height: 1.5;
}
/* ===============================
   SECCIÓN CONTACTO
   =============================== */
.contact-hero {
  text-align: center;
  padding: 100px 20px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero h2 {
  color: var(--azul);
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-hero p {
  color: var(--gris);
  font-size: 17px;
  line-height: 1.6;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto 80px;
  background: rgba(0, 10, 20, 0.6);
  border: 1px solid rgba(0, 179, 255, 0.25);
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

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

.contact-form label {
  color: var(--azul);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 179, 255, 0.25);
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--blanco);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--verde);
  box-shadow: 0 0 10px rgba(0, 255, 159, 0.2);
}

.contact-form button {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--azul);
  color: var(--negro);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: var(--verde);
  color: #03121c;
}
/* ===============================
   FOOTER UNIVERSAL TRADERS LATAM
   =============================== */
.footer-tl {
  background: rgba(0, 10, 20, 0.9);
  border-top: 1px solid rgba(0, 179, 255, 0.25);
  padding: 40px 20px 25px;
  text-align: center;
  color: var(--gris);
  margin-top: 60px;
}

.footer-content {
  max-width: 700px;
  margin: 0 auto;
}

.footer-title {
  color: var(--azul);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-subtitle {
  color: var(--verde);
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-content hr {
  border: none;
  height: 1px;
  background: rgba(0, 179, 255, 0.2);
  margin: 15px auto;
  width: 60%;
}

.footer-rights {
  color: var(--gris);
  font-size: 13px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-title { font-size: 18px; }
  .footer-subtitle { font-size: 14px; }
  .footer-rights { font-size: 12px; }
}
/* ===============================
   EFECTO NEÓN AZUL (FOOTER TL)
   =============================== */

/* 🔹 Animación de pulso suave */
@keyframes pulsoAzulTL {
  0%, 100% {
    text-shadow: 0 0 6px rgba(0, 179, 255, 0.6),
                 0 0 12px rgba(0, 179, 255, 0.4),
                 0 0 18px rgba(0, 179, 255, 0.2);
    color: var(--azul);
  }
  50% {
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.8),
                 0 0 22px rgba(0, 255, 255, 0.6),
                 0 0 35px rgba(0, 179, 255, 0.4);
    color: #00d4ff;
  }
}

/* 🔹 Aplicación del efecto al título principal */
.footer-title {
  animation: pulsoAzulTL 3s infinite ease-in-out;
}
/* ===============================
   EFECTO NEÓN AZUL (TÍTULO PRINCIPAL HERO)
   =============================== */

@keyframes pulsoAzulHero {
  0%, 100% {
    text-shadow: 0 0 8px rgba(0, 179, 255, 0.5),
                 0 0 15px rgba(0, 179, 255, 0.3),
                 0 0 30px rgba(0, 179, 255, 0.1);
    color: var(--verde);
  }
  50% {
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8),
                 0 0 30px rgba(0, 179, 255, 0.6),
                 0 0 45px rgba(0, 255, 255, 0.3);
    color: #00ffcc;
  }
}

/* 🔹 Aplica el efecto al título principal del hero */
.hero h2 {
  animation: pulsoAzulHero 4s infinite ease-in-out;
}
