@charset "UTF-8";
/* ============================================ */
/* VARIABLES RGB */
/* ============================================ */
/* ============================================ */
/* ESTILOS GENERALES */
/* ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* ============================================ */
/* 1. BODY CON ESCUDO COMO MARCA DE AGUA - AJUSTE SOLICITADO */
/* ============================================ */
body {
  font-family: Arial, sans-serif;
  color: rgb(0, 0, 0);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  position: relative;
  /* FONDO CON MARCA DE AGUA DEL ESCUDO - AJUSTADO */
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -1;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/1-A.jpg");
  background-size: cover; /* completo */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.9; /* MÁS TRANSPARENTE EL ESCUDO */
  z-index: -2;
  pointer-events: none;
}

/* ============================================ */
/* 2. CONTENIDO PRINCIPAL SIN FONDO */
/* ============================================ */
.main-content {
  flex: 1;
  padding: 30px 0;
}

/* ============================================ */
/* HEADER - SIN CAMBIOS  */
/* ============================================ */
.main-header {
  background: linear-gradient(to right, rgb(139, 0, 0), rgb(255, 0, 0), rgb(139, 0, 0));
  padding: 15px 0;
  border-bottom: 5px solid rgb(255, 215, 0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo-container .logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgb(255, 215, 0);
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.logo-container .logo.logo-left {
  animation: flotarIzquierda 3s ease-in-out infinite;
}
.logo-container .logo.logo-right {
  animation: flotarDerecha 3s ease-in-out infinite;
}
.logo-container .logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgb(255, 215, 0);
}

.header-title {
  text-align: center;
  flex-grow: 1;
}
.header-title h1 {
  color: rgb(255, 255, 255);
  font-size: 2.2rem;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 1.5px;
  font-weight: bold;
  text-transform: uppercase;
}
.header-title h2 {
  color: rgb(255, 215, 0);
  font-size: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

@keyframes flotarIzquierda {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}
@keyframes flotarDerecha {
  0%, 100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-8px) rotate(-3deg);
  }
}
/* ============================================ */
/* NAVBAR */
/* ============================================ */
.navbar-bomberos {
  background: rgba(255, 255, 255, 0.95);
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2px;
}

.nav-item .nav-link {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
  padding: 15px 25px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  border-radius: 8px;
  margin: 5px;
  background: rgba(240, 240, 240, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-item .nav-link:hover {
  color: rgb(255, 0, 0);
  background: rgba(255, 0, 0, 0.1);
  border-color: rgb(255, 0, 0);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}
.nav-item .nav-link.active {
  color: rgb(255, 255, 255);
  background: rgb(255, 0, 0);
  border-color: rgb(255, 215, 0);
}

/* ============================================ */
/* 3. HISTORIA CON FONDO TRANSPARENTE */
/* ============================================ */
.historia-section {
  background: transparent;
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgb(255, 0, 0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: rgb(252, 252, 252);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 3px solid rgb(255, 215, 0);
  display: inline-block;
  padding-bottom: 10px;
}

.historia-texto p {
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
  text-align: justify;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid rgb(255, 0, 0);
  font-weight: bold;
}

.galeria-title {
  color: rgb(253, 104, 4);
  text-align: center;
  margin: 40px 0 25px;
  font-size: 2rem;
  font-weight: bold;
}

.epoca-title {
  color: rgb(255, 255, 255);
  text-align: center;
  background-color: rgb(253, 104, 4);
  border-left: 4px solid rgb(255, 215, 0);
  padding-left: 15px;
  margin-bottom: 25px;
  font-size: 1.4rem;
  font-weight: bold;
}

/* ============================================ */
/* 4. IMÁGENES CON FONDO TRANSPARENTE */
/* ============================================ */
.imagen-placeholder {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: rgb(255, 255, 255);
  background-size: 60% auto !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.imagen-placeholder span {
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
  color: rgb(255, 255, 255);
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.imagen-placeholder:not([style*=background-image]) span {
  opacity: 1;
}
.imagen-placeholder:hover span {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
.imagen-placeholder.antigua {
  border-color: rgb(150, 150, 150);
}
.imagen-placeholder.actual {
  border-color: rgb(255, 0, 0);
}
.imagen-placeholder:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.imagen-desc {
  text-align: center;
  color: rgb(255, 255, 255);
  font-style: italic;
  font-size: 1rem;
  background: transparent;
  padding: 8px;
  border-radius: 5px;
  border: 2px solid rgb(253, 104, 4);
}

/* ============================================ */
/* FOOTER - MODIFICADO (SIN SÍMBOLO ∞) */
/* ============================================ */
.main-footer {
  background: url("/images/fondofoo1.png") center/cover no-repeat;
  color: rgb(255, 255, 255);
  padding: 30px 0;
  text-align: center;
  border-top: 5px solid rgb(255, 215, 0);
  margin-top: 40px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.footer-content .footer-lema {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: rgb(255, 215, 0);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-content .footer-anio {
  font-size: 1.5rem;
  color: rgb(255, 255, 255);
  font-weight: bold;
}
.footer-content .footer-anio::before {
  content: "Desde ";
  font-weight: normal;
}

/* ============================================ */
/* RESPONSIVE - CON AJUSTES PARA EL FONDO */
/* ============================================ */
/* Mobile 320px - 767px */
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
  /* AJUSTE ESCUDO EN MÓVIL */
  body::after {
    background-size: 350px;
    opacity: 0.5;
  }
  body::before {
    background-color: rgba(255, 255, 255, 0.75);
  }
  /* HEADER - LOGOS UNO AL LADO DEL OTRO (FUERZA BRUTA) */
  .header-content .logo-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    width: 100% !important;
    margin: 5px 0 !important;
  }
  .header-content .logo-container .logo {
    width: 70px !important;
    height: 70px !important;
    margin: 0 !important;
  }
  .header-title {
    margin-bottom: 10px;
  }
  .header-title h1 {
    font-size: 1.5rem !important;
    letter-spacing: 1px;
  }
  .header-title h2 {
    font-size: 1.1rem !important;
  }
  .nav-menu {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
  .nav-item .nav-link {
    padding: 12px 20px !important;
    font-size: 1rem;
    width: 90%;
    text-align: center;
    margin: 3px 0;
  }
  .main-content {
    padding: 20px 10px;
  }
  .historia-section {
    padding: 20px !important;
    margin: 0;
  }
  .section-title {
    font-size: 1.6rem !important;
    margin-bottom: 25px !important;
  }
  .historia-texto p {
    font-size: 1rem !important;
    padding: 15px !important;
  }
  .galeria-title {
    font-size: 1.4rem !important;
    margin: 30px 0 20px !important;
  }
  .epoca-title {
    font-size: 1.2rem !important;
  }
  .imagen-placeholder {
    height: 160px !important;
  }
  .imagen-placeholder span {
    font-size: 1rem !important;
    padding: 10px !important;
  }
  .footer-lema {
    font-size: 1.3rem !important;
  }
  .footer-anio {
    font-size: 1.1rem !important;
  }
}
/* ============================================ */
/* MENÚ HORIZONTAL PARA MÓVIL */
/* ============================================ */
@media (max-width: 767px) {
  .navbar-bomberos .nav-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
  }
  .navbar-bomberos .nav-item {
    flex: 0 1 auto;
  }
  .navbar-bomberos .nav-link {
    display: block;
    padding: 8px 12px;
    background-color: rgba(240, 240, 240, 0.8);
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  /* Ocultar hamburguesa si existe */
  .menu-icon,
  #menu-toggle {
    display: none;
  }
}
/* Ajuste extra para pantallas muy chicas */
@media (max-width: 480px) {
  .navbar-bomberos .nav-link {
    padding: 5px 8px;
    font-size: 0.75rem;
  }
}
/* ============================================ */
/* SECCIÓN ALOJAMIENTOS - NUEVOS ESTILOS MODIFICADOS */
/* ============================================ */
/* Estilos generales de la sección */
.alojamientos-section {
  background: transparent;
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgb(255, 0, 0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Tarjeta de alojamiento */
.alojamiento-card {
  background: rgb(255, 255, 255);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.alojamiento-card:hover {
  transform: translateY(-5px);
  border-color: rgb(255, 0, 0);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

/* Imagen del alojamiento */
.alojamiento-imagen {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.alojamiento-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.alojamiento-card:hover .alojamiento-imagen img {
  transform: scale(1.05);
}

/* Información del alojamiento */
.alojamiento-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.alojamiento-nombre {
  color: rgb(255, 0, 0);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
  border-bottom: 2px solid rgb(255, 215, 0);
  padding-bottom: 8px;
}

.alojamiento-desc {
  color: rgb(0, 0, 0);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Detalles de contacto */
.alojamiento-contacto {
  margin-bottom: 15px;
}

.contacto-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  color: rgb(0, 0, 0);
  font-size: 0.9rem;
}
.contacto-item i {
  color: rgb(255, 0, 0);
  margin-right: 10px;
  margin-top: 2px;
  width: 16px;
  text-align: center;
}

/* Botones de acción */
.alojamiento-botones {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-mapa, .btn-web {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-mapa {
  background: rgb(255, 0, 0);
  color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 0, 0);
}
.btn-mapa:hover {
  background: rgb(178.5, 0, 0);
  border-color: rgb(178.5, 0, 0);
  transform: translateY(-2px);
}

.btn-web {
  background: transparent;
  color: rgb(255, 0, 0);
  border: 2px solid rgb(255, 0, 0);
}
.btn-web:hover {
  background: rgb(255, 0, 0);
  color: rgb(255, 255, 255);
  transform: translateY(-2px);
}

/* Tarjetas de información adicional */
.info-card {
  background: rgb(255, 255, 255);
  border: 2px solid rgba(139, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.info-card h4 {
  color: rgb(139, 0, 0);
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid rgb(255, 215, 0);
  padding-bottom: 8px;
}
.info-card h4 i {
  color: rgb(255, 0, 0);
  margin-right: 8px;
}
.info-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.info-card li {
  color: rgb(0, 0, 0);
  margin-bottom: 8px;
  line-height: 1.4;
}
.info-card p {
  color: rgb(0, 0, 0);
  line-height: 1.5;
  margin-bottom: 10px;
}

/* ============================================ */
/* SECCIÓN FIESTA - NUEVOS ESTILOS */
/* ============================================ */
.fiesta-section {
  background: transparent;
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgb(255, 0, 0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================ */
/* INVITACIÓN - CORREGIDA */
/* ============================================ */
.invitacion-principal {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px;
  border: 3px solid #C5A028;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.invitacion-principal::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid #C62828;
  border-radius: 25px;
  opacity: 0.3;
  pointer-events: none;
}

.fiesta-titulo-grande {
  font-size: 3rem;
  color: rgb(255, 0, 0);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

/* Media query DESPUÉS */
@media (max-width: 320px) {
  body .fiesta-titulo-grande {
    font-size: 1.8rem;
    letter-spacing: 1px;
    word-break: break-word;
    line-height: 1.2;
  }
}
@media (min-width: 321px) and (max-width: 450px) {
  .fiesta-titulo-grande {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.fiesta-subtitulo {
  font-size: 1.5rem;
  color: rgb(139, 0, 0);
  margin-bottom: 25px;
  font-weight: 300;
}

.fiesta-fecha {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.fecha-dia {
  background: rgb(255, 0, 0);
  color: rgb(255, 255, 255);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
}

.fecha-hora {
  background: rgb(255, 215, 0);
  color: rgb(139, 0, 0);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
}

.fiesta-lugar {
  font-size: 1.2rem;
  color: rgb(0, 0, 0);
  margin-bottom: 25px;
}
.fiesta-lugar i {
  color: rgb(255, 0, 0);
  margin-right: 10px;
}

.invitacion-destacado {
  font-size: 1.5rem;
  color: rgb(139, 0, 0);
  font-style: italic;
  border-top: 2px dashed rgb(253, 104, 4);
  border-bottom: 2px dashed rgb(253, 104, 4);
  padding: 20px;
  margin-top: 20px;
}

/* TÍTULOS DE SECCIÓN */
.fiesta-seccion-titulo {
  color: rgb(255, 255, 255);
  text-align: center;
  margin: 50px 0 30px;
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}
.fiesta-seccion-titulo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgb(255, 215, 0);
  border-radius: 2px;
}

/* MENÚ CARDS */
.menu-card {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgb(255, 0, 0);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: rgb(255, 215, 0);
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.menu-icono {
  font-size: 2.5rem;
  color: rgb(255, 0, 0);
  margin-bottom: 15px;
}

.menu-categoria {
  color: rgb(139, 0, 0);
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.menu-item {
  color: rgb(0, 0, 0);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: left;
}

.menu-descripcion {
  color: rgb(0, 0, 0);
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.8;
}

/* CATERING */
.catering-card {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgb(255, 215, 0);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}
.catering-card:hover {
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.catering-nombre {
  color: rgb(255, 0, 0);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.catering-descripcion {
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: bold;
}

.catering-contacto p {
  color: rgb(139, 0, 0);
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.catering-contacto i {
  color: rgb(255, 0, 0);
  margin-right: 10px;
  width: 20px;
}

.btn-catering {
  display: inline-block;
  background-color: #C62828;
  color: #FFFFFF;
  padding: 30px 60px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
}
.btn-catering i {
  margin-right: 8px;
}
.btn-catering span {
  display: inline-block;
}
.btn-catering small {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 2px;
}
.btn-catering:hover {
  background-color: rgb(139, 0, 0);
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.btn-catering:active {
  transform: translateY(1px);
}

/* ============================================ */
/* INVITACIÓN - AJUSTE PARA 320px */
/* ============================================ */
@media (max-width: 320px) {
  .invitation-principal {
    padding: 15px;
    margin-bottom: 30px;
  }
  .invitation-principal h2 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .invitation-principal p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .invitation-principal::before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }
}
/* UBICACIÓN - IMAGEN DEL LUGAR */
.lugar-card {
  background: rgb(255, 255, 255);
  border: 2px solid rgb(255, 0, 0);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}
.lugar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.lugar-imagen {
  height: 250px;
  overflow: hidden;
}
.lugar-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.lugar-card:hover .lugar-imagen img {
  transform: scale(1.05);
}

.lugar-info {
  padding: 20px;
  background: transparent;
}

.lugar-nombre {
  color: rgb(255, 0, 0);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.lugar-direccion {
  color: rgb(0, 0, 0);
  margin-bottom: 8px;
  font-size: 1rem;
}
.lugar-direccion i {
  color: rgb(255, 0, 0);
  margin-right: 8px;
}

.lugar-referencia {
  color: rgb(139, 0, 0);
  font-size: 0.95rem;
  font-style: italic;
  border-left: 3px solid rgb(255, 215, 0);
  padding-left: 15px;
}

/* MAPA */
.mapa-card {
  background: rgb(255, 255, 255);
  border: 2px solid rgb(255, 0, 0);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
}

.mapa-titulo {
  color: rgb(139, 0, 0);
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
}

.mapa-contenedor {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.btn-mapa-grande {
  display: block;
  width: 100%;
  padding: 12px;
  background: rgb(255, 0, 0);
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid rgb(255, 0, 0);
}
.btn-mapa-grande:hover {
  background: transparent;
  color: rgb(255, 0, 0);
  transform: translateY(-2px);
}
.btn-mapa-grande i {
  margin-right: 8px;
}

/* TARJETAS DE INFORMACIÓN ADICIONAL */
.info-card-fiesta {
  background: rgb(255, 255, 255);
  border: 2px solid rgba(255, 0, 0, 0.2);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.info-card-fiesta:hover {
  border-color: rgb(255, 0, 0);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.1);
}
.info-card-fiesta i {
  font-size: 2.5rem;
  color: rgb(255, 0, 0);
  margin-bottom: 15px;
}
.info-card-fiesta h4 {
  color: rgb(139, 0, 0);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: bold;
  border-bottom: 2px solid rgb(255, 215, 0);
  padding-bottom: 8px;
}
.info-card-fiesta p {
  color: rgb(0, 0, 0);
  margin-bottom: 5px;
  font-size: 1rem;
}
.info-card-fiesta .precio {
  color: rgb(255, 0, 0);
  font-size: 1.3rem;
  font-weight: bold;
}
.info-card-fiesta small {
  color: rgb(139, 0, 0);
  display: block;
  margin-top: 10px;
}

.info-card-fiesta1 {
  background: rgb(255, 255, 255);
  border: 2px solid rgba(255, 0, 0, 0.2);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: left;
  height: 100%;
  transition: all 0.3s ease;
}
.info-card-fiesta1:hover {
  border-color: rgb(255, 0, 0);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.1);
}
.info-card-fiesta1 i {
  font-size: 2.5rem;
  color: rgb(255, 0, 0);
  margin-bottom: 15px;
}
.info-card-fiesta1 h4 {
  color: rgb(139, 0, 0);
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid rgb(255, 215, 0);
  padding-bottom: 8px;
  font-weight: bold;
  text-align: center;
}
.info-card-fiesta1 p {
  color: rgb(0, 0, 0);
  margin-bottom: 5px;
  font-size: 1rem;
}
.info-card-fiesta1 .precio {
  color: rgb(255, 0, 0);
  font-size: 1rem;
}
.info-card-fiesta1 small {
  color: rgb(139, 0, 0);
  display: block;
  margin-top: 10px;
}

/* NOTA FINAL */
.fiesta-nota-final {
  margin-top: 50px;
  padding: 30px;
  border-top: 3px solid rgb(255, 215, 0);
}
.fiesta-nota-final p {
  color: rgb(255, 255, 255);
  font-size: 2rem;
  margin-bottom: 10px;
}
.fiesta-nota-final .lema-fiesta {
  color: rgb(255, 0, 0);
  font-size: 3rem;
  font-style: italic;
  font-weight: bold;
}

/* ============================================ */
/* SECCIÓN CUARTEL - NUEVOS ESTILOS */
/* ============================================ */
.cuartel-section {
  background: transparent;
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgb(255, 0, 0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================ */
/* MENÚ LATERAL IZQUIERDO (STICKY) */
/* ============================================ */
.menu-lateral {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 15px;
  padding: 20px;
  position: sticky;
  top: 100px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.menu-lateral:hover {
  border-color: rgb(255, 0, 0);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.1);
}

.menu-lateral-titulo {
  color: rgb(194, 36, 36);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid rgb(253, 104, 4);
  letter-spacing: 2px;
}

.menu-lateral-item {
  margin-bottom: 10px;
}

.menu-categoria {
  color: rgb(139, 0, 0);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 4px solid rgb(253, 104, 4);
}
.menu-categoria i {
  color: rgb(255, 0, 0);
  margin-right: 8px;
  width: 20px;
}

.menu-subitem {
  margin-left: 20px;
  margin-bottom: 8px;
}

.menu-enlace {
  display: block;
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 2px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: bold;
}
.menu-enlace i {
  color: rgb(255, 0, 0);
  margin-right: 10px;
  width: 18px;
  font-size: 0.9rem;
}
.menu-enlace:hover {
  background: rgba(255, 0, 0, 0.1);
  color: rgb(255, 0, 0);
  transform: translateX(5px);
}

.menu-enlace.active {
  background: #c40937;
  color: white;
}

.menu-enlace.active i {
  color: white;
}

.menu-nota {
  margin-top: 25px;
  padding: 10px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  font-style: italic;
  color: rgb(139, 0, 0);
}
.menu-nota i {
  color: rgb(255, 0, 0);
  margin-right: 5px;
}

/* ============================================ */
/* SECCIONES DE CONTENIDO */
/* ============================================ */
.cuartel-seccion {
  margin-bottom: 20px;
  scroll-margin-top: 100px;
}

.cuartel-seccion-titulo {
  color: rgb(255, 255, 255);
  font-size: 2rem;
  margin: 40px 0 30px;
  font-weight: bold;
  border-bottom: 3px solid rgb(255, 215, 0);
  padding-bottom: 10px;
  display: inline-block;
}
.cuartel-seccion-titulo i {
  margin-right: 10px;
  color: rgb(139, 0, 0);
}

.vehiculos-titulo-principal {
  margin-top: 60px;
  font-size: 2.2rem;
  display: block;
  width: 100%;
}

/* ============================================ */
/* PERSONAL ACTIVO */
/* ============================================ */
.personal-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
  width: 100%;
}

/* Opcional: si querés centrar las categorías */
.personal-grid {
  align-items: center;
}

/* Opcional: cada categoría con ancho máximo controlado */
.personal-categoria {
  width: 100%;
  max-width: 800px; /* Opcional: evitás que se estiren demasiado en pantallas gigantes */
  margin-left: 10px; /* Opcional: un poco de margen a la izquierda */
  margin-right: auto;
}

.personal-categoria {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}
.personal-categoria:hover {
  border-color: rgb(255, 0, 0);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.1);
}

.personal-categoria-titulo {
  color: rgb(139, 0, 0);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 2px solid rgb(255, 215, 0);
  padding-bottom: 8px;
}
.personal-categoria-titulo i {
  color: rgb(255, 0, 0);
  margin-right: 10px;
}

.personal-lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.personal-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid rgb(253, 104, 4);
  transition: all 0.3s ease;
}
.personal-item:hover {
  background: rgba(255, 0, 0, 0.05);
  transform: translateX(5px);
}

.personal-nombre {
  color: rgb(0, 0, 0);
  font-weight: 500;
  font-size: 1.2rem;
  font-weight: bold;
}

.personal-rango {
  color: rgb(255, 0, 0);
  font-size: 0.9rem;
  font-style: italic;
  background: rgba(255, 215, 0, 0.1);
  padding: 3px 8px;
  border-radius: 15px;
}

.personal-total {
  text-align: right;
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 217, 0, 0.726);
  border-radius: 10px;
  border: 1px dashed rgb(255, 0, 0);
}
.personal-total p {
  color: rgb(212, 15, 15);
  font-size: 1.5rem;
  margin: 0;
}
.personal-total i {
  color: rgb(255, 0, 0);
  margin-right: 8px;
}

/* ============================================ */
/* VEHÍCULOS */
/* ============================================ */
.vehiculos-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.vehiculo-card {
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  scroll-margin-top: 100px;
}
.vehiculo-card:hover {
  border-color: rgb(255, 0, 0);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.15);
}

.vehiculo-imagen {
  flex: 0 0 300px;
  height: 220px;
  overflow: hidden;
}
.vehiculo-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vehiculo-card:hover .vehiculo-imagen img {
  transform: scale(1.05);
}

/* ============================================ */
/* VEHÍCULOS - VERSIÓN MÓVIL (hasta 700px) */
/* ============================================ */
@media (max-width: 700px) {
  .vehiculo-card {
    flex-direction: column; /* Cambia a columna: imagen arriba, texto abajo */
  }
  .vehiculo-imagen {
    flex: 0 0 auto; /* Quita el ancho fijo */
    width: 100%; /* La imagen ocupa todo el ancho */
    height: 200px; /* Altura ajustada para móvil */
  }
  .vehiculo-info {
    padding: 15px; /* Reducí el padding para que entre mejor */
  }
  .vehiculo-numero {
    font-size: 1.3rem; /* Un poco más chico */
  }
  .vehiculo-nombre {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .vehiculo-descripcion {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .vehiculo-caracteristicas {
    flex-wrap: wrap; /* Si no entran, se envuelven */
    gap: 10px;
  }
}
/* ============================================ */
/* VEHÍCULOS - MÓVIL MUY CHICO (320px) */
/* ============================================ */
@media (max-width: 480px) {
  .vehiculo-imagen {
    height: 160px; /* Imagen más chica */
  }
  .vehiculo-info {
    padding: 10px;
  }
  .vehiculo-numero {
    font-size: 1.1rem;
  }
  .vehiculo-nombre {
    font-size: 1rem;
  }
  .vehiculo-descripcion {
    font-size: 0.85rem;
  }
  .vehiculo-caracteristicas span {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
}
.vehiculo-info {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.vehiculo-numero {
  color: rgb(255, 0, 0);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.vehiculo-nombre {
  color: rgb(139, 0, 0);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.vehiculo-descripcion {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}
.vehiculo-descripcion strong {
  color: rgb(255, 0, 0);
}

.vehiculo-caracteristicas {
  display: flex;
  gap: 15px;
  margin-top: auto;
}
.vehiculo-caracteristicas span {
  background: rgba(255, 0, 0, 0.1);
  color: rgb(139, 0, 0);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 215, 0, 0.3);
}
.vehiculo-caracteristicas i {
  color: rgb(255, 0, 0);
  margin-right: 5px;
}

/* Tablet 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  /* AJUSTE ESCUDO EN TABLET */
  body::after {
    background-size: cover;
    opacity: 0.9;
  }
  body::before {
    background-size: cover;
    opacity: 0.9;
  }
  .header-title h1 {
    font-size: 1.8rem;
  }
  .header-title h2 {
    font-size: 1.3rem;
  }
  .logo-container .logo {
    width: 100px;
    height: 100px;
  }
  .nav-item .nav-link {
    padding: 12px 18px;
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .historia-texto p {
    font-size: 1.05rem;
  }
  .footer-lema {
    font-size: 1.6rem;
  }
}
/* ============================================ */
/* REDES SOCIALES EN FOOTER */
/* ============================================ */
.redes-sociales {
  display: flex;
  justify-content: right;
  gap: 20px;
  margin-bottom: 20px;
}

.red-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgb(0, 0, 0);
  border: 2px solid rgb(255, 215, 0); /* borde dorado */
  border-radius: 50%;
  color: rgb(255, 255, 255);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.red-social-link:hover {
  background: rgb(255, 215, 0);
  color: rgb(255, 0, 0);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* ============================================ */
/* RESPONSIVE PARA REDES SOCIALES */
/* ============================================ */
/* Desktop 1024px+ */
@media (min-width: 1024px) {
  .red-social-link {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
}
/* Tablet 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .red-social-link {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}
/* Mobile 320px - 767px */
@media (max-width: 767px) {
  .redes-sociales {
    gap: 15px;
  }
  .red-social-link {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
    border-width: 2px;
  }
}
/* Mobile pequeño (320px) */
@media (max-width: 320px) {
  .redes-sociales {
    gap: 12px;
  }
  .red-social-link {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    border-width: 2px;
  }
}
/* Desktop 1024px+ */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .header-title h1 {
    font-size: 2.2rem;
  }
  .header-title h2 {
    font-size: 1.5rem;
  }
  .logo-container .logo {
    width: 120px;
    height: 120px;
  }
  .nav-item .nav-link {
    padding: 15px 25px;
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .historia-texto p {
    font-size: 1.1rem;
  }
  .footer-lema {
    font-size: 1.8rem;
  }
}
/* Desktop grande 1200px+ */
@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
  }
  .header-title h1 {
    font-size: 2.4rem;
  }
  .header-title h2 {
    font-size: 1.6rem;
  }
  .logo-container .logo {
    width: 130px;
    height: 130px;
  }
  .section-title {
    font-size: 2.8rem;
  }
  .historia-texto p {
    font-size: 1.5rem;
  }
  .footer-lema {
    font-size: 2rem;
  }
}
/* Tablet y móviles grandes (hasta 768px) */
@media (max-width: 768px) {
  body::after {
    background-size: cover !important;
    background-position: center !important;
    opacity: 0.9;
  }
  body::before {
    background-color: transparent;
  }
}
/* Móvil mediano (hasta 425px) */
@media (max-width: 425px) {
  body::after {
    background-size: cover !important;
    background-position: center !important;
    opacity: 0.9;
  }
  body::before {
    background-color: transparent;
  }
}
/* Móvil chico (hasta 375px) */
@media (max-width: 375px) {
  body::after {
    background-size: cover !important;
    background-position: center !important;
    opacity: 0.9;
  }
  body::before {
    background-color: transparent;
  }
}
/* Móvil muy chico (hasta 320px) */
@media (max-width: 320px) {
  body::after {
    background-size: cover !important;
    background-position: center !important;
    opacity: 0.9;
  }
  body::before {
    background-color: transparent;
  }
}
#btn-arriba {
  position: fixed;
  bottom: 25px;
  right: 25px;
  padding: 10px 14px;
  background: #800020;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

#btn-arriba:hover {
  background: #a00028;
}

/*# sourceMappingURL=styles.css.map */
