/* INICIO DEL CSS GLOBAL COMPLETO */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #1a1a1a;
  color: #f0f0f0;
}

/* ===== RESET GLOBAL SCROLL ===== */
html, body {
  overflow-x: hidden;
}

/* BANNER GLOBAL CON RESPONSIVE */
.banner {
  position: relative;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 120px 20px;
  color: #fff;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.banner h1,
.banner p {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.banner h1 {
  font-size: 2rem;
  font-weight: 700;
}

.banner p {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .banner {
    padding: 220px 20px 180px;
  }

  .banner h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }

  .banner p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  }
}

header, footer {
  width: 100%;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/hero.jpg') center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero .btn {
  background-color: #a4161a;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.hero .btn:hover {
  background-color: #7a0d12;
}

.contenedor {
  padding: 40px 20px;
}

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

/* === CORDÓN DEL MAIN (DESKTOP) — CON !important === */
@media (min-width:1024px){
  .articulo--bordes{
    border-left: 2px solid rgba(255,215,0,.25) !important;
    border-right: 2px solid rgba(255,215,0,.25) !important;
    box-shadow: none !important;
    transition: border-color .25s ease, box-shadow .25s ease;
    border-radius: 8px;
  }

  .articulo--bordes:hover{
    border-left-color: #ffd700 !important;
    border-right-color: #ffd700 !important;
    box-shadow: 0 0 24px rgba(255,215,0,.18) !important;
  }

  main.articulo--bordes.contenedor{
    margin-top: 28px !important;
    margin-right: 30px !important;
    margin-bottom: 40px !important;
    margin-left: 30px !important;
  }
}

/* === LAYOUT ALTERNADO SOLO PARA ARTÍCULOS (DESKTOP) === */
@media (min-width:1024px){
  main.articulo--desktop{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
    align-items: start;
  }

  main.articulo--desktop > h1{
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .articulo--desktop .fecha-articulo{
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center; 
    font-size: 0.95rem;
    color: #bbbbbb;
    margin: 0 0 14px 0;
  }

  .intro-split{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    align-items: start;
  }

  .intro-split .intro-img,
  .intro-split .intro-text {
    margin: 0;
    padding: 0;
  }

  .intro-split .intro-img figure,
  .intro-split .intro-img picture,
  .intro-split .intro-img img {
    display: block;
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }

  .intro-split .intro-text {
    padding-right: 20px;
  }

  .intro-text > :first-child {
    margin-top: 0;
    padding-top: 0;
  }

  .img-card figure { margin: 0; }
  .img-card figcaption {
    margin-top: 8px;
    font-size: 0.95rem;
    opacity: 0.85;
    text-align: center;
  }

  .split.right .split-text{ padding-left: 20px; }
  .split.left .split-text{ padding-right: 20px; }

  .split-text > h2,
  .intro-text > h2 { margin-top: 0; }

  .split-text > p,
  .intro-text > p {
    margin: 0 0 14px 0;
    line-height: 1.7;
  }

  main.articulo--desktop p,
  main.articulo--desktop li {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  main.articulo--desktop h2 {
    font-size: 1.35rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  main.articulo--desktop figcaption {
    font-size: 0.90rem;
    line-height: 1.5;
  }
}

/* === FORMULARIO DE CONTACTO === */
.formulario {
  background: #111;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.formulario input,
.formulario textarea {
  background: #1a1a1a;
  border: 1px solid #444;
  padding: 12px 16px;
  border-radius: 6px;
  color: #eee;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.formulario input::placeholder,
.formulario textarea::placeholder {
  color: #777;
}

.formulario .btn {
  background: #ffd700;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.formulario .btn:hover {
  background: #ffe44d;
}

.contacto-correo-directo {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9em;
  color: #ccc;
}

.contacto-correo-directo a {
  color: #ffd700;
  text-decoration: none;
}

/* === BLOQUE RECOMENDADO (final) === */
.bloque-recomendado {
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 32px auto;
  padding: 0 16px;
  max-width: 900px;
}

.bloque-recomendado > h2 {
  color: #f9c74f;
  font-weight: 600;
  font-size: 1.25rem;
  text-align: center;
  margin: 0 0 22px;
}

.bloque-recomendado .grid {
  display: block;
}

.bloque-recomendado .tarjeta-articulo.oscura {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.bloque-recomendado .tarjeta-articulo.oscura img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #222;
}

.bloque-recomendado .tarjeta-contenido {
  padding: 16px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.bloque-recomendado .tarjeta-contenido h2 {
  margin: 0 0 6px;
  color: #f9c74f;
  font-weight: 700;
}

.bloque-recomendado .tarjeta-contenido p {
  margin: 0 0 12px;
  color: #ccc;
  line-height: 1.6;
}

.bloque-recomendado .tarjeta-contenido .fecha {
  display: block;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 8px;
  margin-bottom: 10px;
}

.bloque-recomendado .tarjeta-contenido .btn {
  align-self: flex-start;
}

/* === TARJETAS OSCURAS COMPACTAS (Destinos, Blog, Cultura, Servicios) === */

.tarjeta.oscura,
.tarjeta-articulo.oscura {
  background-color: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
  color: #f0f0f0;
}

.tarjeta.oscura:hover,
.tarjeta-articulo.oscura:hover {
  transform: translateY(-3px);
}

.tarjeta.oscura img,
.tarjeta-articulo.oscura img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  background: #222;
  border-radius: 10px 10px 0 0;
}

.tarjeta-contenido {
  padding: 10px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tarjeta.oscura h2,
.tarjeta-articulo.oscura h2 {
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  color: #f9c74f;
  font-weight: 700;
  line-height: 1.3;
}

.tarjeta.oscura p,
.tarjeta-articulo.oscura p {
  flex: 1;
  color: #ccc;
  margin-bottom: 8px;
  font-size: 0.82rem;
  line-height: 1.4;
}

.tarjeta.oscura .fecha,
.tarjeta-articulo.oscura .fecha {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 10px;
}

.tarjeta.oscura .btn,
.tarjeta-articulo.oscura .btn {
  align-self: flex-start;
  background-color: #f9c74f;
  color: #000;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8rem;
  transition: background 0.3s;
}

.tarjeta.oscura .btn:hover,
.tarjeta-articulo.oscura .btn:hover {
  background-color: #e4b949;
}

/* === GRID DE TARJETAS COMPACTO === */

.grid-tarjetas {
  display: grid;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 20px;
  gap: 28px 20px;
}

@media (min-width: 1024px) {
  .grid-tarjetas {
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 28px;
  }
}

/* === BOTONES DE NAVEGACIÓN ENTRE SECCIONES === */

.navegacion-secciones {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 4rem auto 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1000px;
}

.boton-navegacion {
  display: inline-block;
  background: #f9c74f;
  color: #121212;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.boton-navegacion:hover {
  background: #e0b742;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* === FAQ PERSONALIZADO CON BOTÓN DESPLEGABLE === */
.faq-acordeon,
.faq-acordeon-seccion {
  width: 100%;
  max-width: none;
  margin: 60px 0;
  box-sizing: border-box;
  text-align: left;
}

.faq-titulo {
  font-size: 1.4rem;
  color: #ffd700;
  margin: 50px 0 44px;
  text-align: left;
  font-weight: 700;
}

.faq-item {
  border: 1px solid #333;
  border-radius: 10px;
  background-color: #1a1a1a;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-toggle .flecha {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 0.7rem;
  color: #ffd700;
}

.faq-toggle.active .flecha {
  transform: rotate(180deg);
}

.faq-content {
  display: none;
  padding: 0 16px 16px;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

.faq-acordeon-seccion > p {
  text-align: left;
  margin: 0 0 2rem;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-toggle.active + .faq-content {
  display: block;
}

/* Versión compacta en desktop */
@media (min-width: 1024px) {
  .faq-titulo {
    font-size: 1.2rem;
    margin: 36px 0 28px;
  }
  .faq-toggle {
    font-size: 0.9rem;
    padding: 10px 14px;
  }
  .faq-toggle .flecha {
    font-size: 0.6rem;
  }
  .faq-content {
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 8px 14px 12px;
  }
  .faq-item {
    margin-bottom: 10px;
  }
}

/* FAQ en móvil */
@media (max-width: 480px) {
  .faq-titulo {
    font-size: 1.2rem;
    margin: 40px 0 36px;
  }
  .faq-toggle {
    font-size: 0.88rem;
    padding: 14px;
    gap: 8px;
  }
  .faq-content {
    font-size: 0.86rem;
    line-height: 1.5;
    padding: 0 14px 14px;
  }
}

/* === CTA FINAL EN ARTÍCULOS === */
.cta-final {
  background-color: #1e1e1e;
  border: 1px solid #444;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.06);
  margin: 50px auto;
  max-width: 800px;
  color: #ddd;
  transition: all 0.3s ease;
}

.cta-final:hover {
  background-color: #292929;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.12);
  transform: translateY(-2px);
}

.cta-final h2 {
  font-size: 1.7em;
  color: #ffd700;
  margin-bottom: 18px;
  font-weight: 600;
  text-align: center;
}

.cta-final p {
  font-size: 1.05em;
  line-height: 1.6;
  color: #ccc;
  text-align: left;
  margin-bottom: 25px;
}

.cta-final .boton-container {
  display: flex;
  justify-content: center;
}

.boton-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.boton-cta:hover {
  background-color: #ffe44d;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* === MENÚ RESPONSIVO FIJO === */
.menu {
  background: #111;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  gap: 15px;
}

.menu .logo {
  font-weight: 700;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
  vertical-align: middle;
  display: block;
}

/* === NAV LINKS === */
.menu .nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
}

.menu .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.menu .nav-links a:hover {
  color: #f9c74f;
}

/* === BOTÓN HAMBURGUESA EN MÓVIL === */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6em;
  cursor: pointer;
  color: #f9c74f;
}

@media (max-width: 768px) {
  .menu-container {
    padding: 4px 12px;
  }

  .logo-img {
    height: 48px;
    margin-left: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .menu .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 58px;
    right: 0;
    width: calc(100% - 40px);
    max-width: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 10px 18px;
    border-radius: 10px;
    z-index: 999;
  }

  .menu .nav-links.show {
    display: flex;
  }

  .menu .nav-links a {
    padding: 8px 0;
    color: #fff;
  }

  .menu .nav-links a:hover {
    color: #f9c74f;
  }
}

/* === FOOTER OSCURO RESPONSIVO === */
.footer {
  background: #111;
  color: #ccc;
  padding: 30px 20px;
  font-size: 0.95em;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h4 {
  color: #fff;
  font-size: 1em;
  margin-bottom: 10px;
}

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

.footer ul li {
  margin: 6px 0;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85em;
  border-top: 1px solid #333;
  margin-top: 30px;
  color: #aaa;
}

/* FOOTER EN MÓVIL */
@media (max-width: 600px) {
  .footer {
    padding: 20px 15px;
    font-size: 0.85em;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer h4 {
    font-size: 0.95em;
    margin-bottom: 8px;
  }

  .footer ul li {
    margin: 4px 0;
  }

  .footer ul li a {
    font-size: 0.9em;
  }

  .footer-bottom {
    padding-top: 15px;
    font-size: 0.75em;
  }
}

.footer-separador {
  width: 100%;
  border-top: 1px solid #333;
  margin: 0;
}

/* === AVISO DE COOKIES (FIXED BOTTOM) === */
.aviso-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111;
  color: #fff;
  font-size: 0.95rem;
  z-index: 9999;
  display: none;
  padding: 1rem 1.2rem;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
}

.aviso-contenido {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.aviso-contenido p {
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.aviso-contenido a {
  color: #ffcc33;
  text-decoration: underline;
}

.aviso-contenido button {
  background-color: #ffcc33;
  color: #000;
  border: none;
  padding: 0.5rem 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.aviso-contenido button:hover {
  background-color: #e6b800;
}

@media (max-width: 600px) {
  .aviso-contenido {
    flex-direction: column;
    align-items: flex-start;
  }

  .aviso-contenido button {
    width: 100%;
  }
}

/* === WRAPPER: marco quieto ==== */
.tabla-wrapper {
  margin: 12px 0 24px;
  padding: 0;
  background: #1e1e1e;
  border: 1px solid #2b2b2b;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* === CAPA QUE SE DESLIZA === */
.tabla-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: none;
  touch-action: pan-x;
  transform: translateZ(0);
}

/* === TABLA === */
.tabla-comparativa {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: #1e1e1e;
}

/* Cabecera */
.tabla-comparativa thead th {
  background: #c49a13;
  color: #111;
  font-weight: 700;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #2b2b2b;
  border-right: 1px solid #2b2b2b;
  position: sticky;
  top: 0;
  z-index: 1;
}

.tabla-comparativa thead th:last-child {
  border-right: 0;
}

/* Celdas */
.tabla-comparativa tbody td {
  padding: 12px 14px;
  color: #e6e6e6;
  line-height: 1.25;
  vertical-align: middle;
  border-bottom: 1px solid #2b2b2b;
  border-right: 1px solid #2b2b2b;
  background: transparent;
}

.tabla-comparativa tbody td:last-child {
  border-right: 0;
}

.tabla-comparativa tbody tr:last-child td {
  border-bottom: 0;
}

.tabla-comparativa tbody tr:nth-child(odd) {
  background: #171717;
}

/* Primera columna */
.tabla-comparativa tbody td:first-child {
  color: #ffd700;
  font-weight: 700;
}

.tabla-comparativa tbody td:first-child a {
  color: #ffd700;
  font-weight: 700;
  text-decoration: none;
}

.tabla-comparativa tbody td a {
  color: #ffd700;
  font-weight: 700;
  text-decoration: none;
}

.tabla-comparativa tbody td a:hover {
  color: #ffe071;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Desktop compacta */
@media (min-width: 1024px) {
  .tabla-comparativa thead th {
    font-size: 0.95rem;
    padding: 10px 12px;
  }

  .tabla-comparativa tbody td {
    font-size: 0.95rem;
    padding: 10px 12px;
  }
}

/* Scroll natural desde móvil */
.tabla-scroll {
  touch-action: auto;
}

/* === FIGURE Y FIGCAPTION === */
.articulo-container figure {
  margin: 18px 0 24px;
}

.articulo-container figcaption {
  color: #a8a8a8;
  font-size: .92rem;
  text-align: center;
  margin-top: 8px;
}

/* === BLOQUE INSTITUCIONAL (AVISO LEGAL / QUIÉNES SOMOS) === */

.bloque-institucional {
  text-align: center;
  margin: 40px auto;
}

.bloque-institucional .icono-svg {
  text-align: center;
  margin: 40px auto 0;
}

.bloque-institucional .icono-svg svg {
  width: 60px;
  height: 60px;
  fill: #ffcc33;
  display: block;
  margin: 0 auto;
}

.bloque-institucional h1,
.bloque-institucional h2 {
  margin-top: 12px;
  margin-bottom: 1.4em;
  text-align: center;
  position: relative;
  display: block;
  color: #ffd700;
  font-weight: 700;
}

.bloque-institucional h1 span,
.bloque-institucional h2 span {
  display: inline-block;
  min-width: 180px;
  padding-bottom: 4px;
  position: relative;
}

.bloque-institucional h1 span::after,
.bloque-institucional h2 span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: #ffcc33;
  border-radius: 2px;
}

/* Ajustes de espacio vertical en páginas institucionales */
main.articulo--bordes .legal-container > .bloque-institucional:first-child {
  margin-top: 48px !important;
}
main.articulo--bordes .legal-container > .bloque-institucional:last-child {
  margin-bottom: 48px !important;
}

@media (min-width: 1024px) {
  main.articulo--bordes .legal-container > .bloque-institucional:first-child {
    margin-top: 60px !important;
  }
  main.articulo--bordes .legal-container > .bloque-institucional:last-child {
    margin-bottom: 60px !important;
  }
}

/* Párrafos dentro de páginas legales */
.bloque-institucional p {
  text-align: left;
  max-width: 750px;
  margin: 0 auto 1.8em auto;
  line-height: 1.7;
  font-size: 1rem;
}

/* ─────────────────────────────────────────────
   FORMULARIO DE CONTACTO — DISEÑO OSCURO + CTA
   Estilo profesional integrado al sitio
   Última actualización: 18 septiembre 2025
───────────────────────────────────────────── */

.formulario {
  background: #111;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.formulario input,
.formulario textarea {
  background: #1a1a1a;
  border: 1px solid #444;
  padding: 12px 16px;
  border-radius: 6px;
  color: #eee;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.formulario input::placeholder,
.formulario textarea::placeholder {
  color: #777;
}

.formulario .btn {
  background: #ffd700;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.formulario .btn:hover {
  background: #ffe44d;
}

.contacto-correo-directo {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9em;
  color: #ccc;
}

.contacto-correo-directo a {
  color: #ffd700;
  text-decoration: none;
}

/* ───────────────────────────────────────────── */

