body {
  background-color: #121212;
  color: #f8f9fa;
}

/* === SEPARADOR === */
.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ece2e2;
}

.separator:not(:empty)::before {
  margin-right: .75em;
}

.separator:not(:empty)::after {
  margin-left: .75em;
}

.separator span {
  background: #FFFFFF;
  color: #000000;
  font-weight: bold;
  font-style: italic;
  padding: 5px 15px;
  border-radius: 2px;
}

/* === ENLACES === */
a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
}
a:hover {
  color: #CCCCCC;
  text-decoration: none;
  font-weight: bold;
}

/* === EFECTO IMÁGENES === */
img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* === MODAL === */
.modal-content {
  background-color: #1e1e1e;
  color: #f8f9fa;
  border-radius: 15px;
}

/* === CALENDARIO === */
.calendar-card {
  background-color: #000;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  width: 100px;
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
  text-align: center;
  color: #ffeb3b;
  font-weight: bold;
  margin-bottom: 12px;
}

.calendar-day {
  font-size: 0.6rem;
  text-transform: uppercase;
}
.calendar-number {
  font-size: 1.8rem;
  line-height: 1;
}
.calendar-month {
  font-size: 0.6rem;
  text-transform: uppercase;
}

/* === HEADER === */
.header {
  width: 100%;
  background: #121212;
  color: #fff;
  padding: 0;
  border-bottom: 2px solid #e63946;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* top bar */
.top-bar {
  background: #1a1a1a;
  color: #ccc;
  font-size: 0.85rem;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-info {
  display: flex;
  gap: 14px;
  align-items: center;
}
.top-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-info i {
  color: #e63946;
}
.top-social {
  display: flex;
  gap: 12px;
}
.top-social a {
  color: #FFFFFF;
  font-size: 1.1rem;
  transition: transform 0.2s;
}
.top-social a:hover {
  transform: scale(1.2);
}

/* main header row */
.header-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 40px;
  border-radius: 8px;
}
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 1px;
}
.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav a {
  color: #ccc;
  font-size: 0.95rem;
  transition: color .2s;
}
.nav a:hover {
  color: #e63946;
}

/* otros estilos */
.form-control,
.form-select {
  background-color: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
}
.form-control:focus,
.form-select:focus {
  border-color: #e63946;
  box-shadow: none;
}

/* === FOOTER === */
.footer {
  background: #121212;
  color: #ccc;
  padding: 40px 20px 10px;
  border-top: 2px solid #e63946;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.05rem;
  border-left: 4px solid #e63946;
  padding-left: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  border-top: 1px solid #333;
  margin-top: 24px;
  color: #999;
}
.contenedor3 {
  display: grid;
  grid-template-columns: 2fr 8fr 2fr; /* proporciones 2 / 8 / 2 */
  width: 100%;
  height: 100px;
  
    color: white;
}

.col1 {  text-align: center; }
.col2 { text-align: center; }
.col3 {  text-align: center; }

/* Evita comportamiento responsive */
@media (max-width: 9999px) {
  .contenedor {
    grid-template-columns: 2fr 8fr 2fr;
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav, .search-bar, .btn-contacto, .datetime-compact {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .top-bar {
    font-size: 0.8rem;
    padding: 6px 12px;
    flex-direction: column;
    gap: 6px;
  }
}
