/******************************
 * ** Generales ** ***********
 * */ 
:root {
  --vino: #ab1738;
  --dorado: #bc955c !important;
  --bg-gris-light:#F9F9F9;
}

.bg-gris-light{
  background-color: var(--bg-gris-light);
}
.bg-vino{
  background-color: var(--vino);
}
.texto-vino {
  color: var(--vino);
}

/******************************
 * ** Header ** ***********
 * */
body .layout-container > nav.bg-navbar-theme {
  background-color: var(--vino) !important;
  border-bottom: 5px solid var(--dorado);
}
nav.layout-navbar img.logo-home {
  max-height: 55px;
}

/******************************
 * ** Footer ** ***********
 * */
footer.bg-footer-theme *,
footer.bg-footer-theme .footer-link:focus {
  color: #fff;
}

footer.bg-footer-theme {
  background-color: var(--vino) !important;
  border-top: 5px solid var(--dorado);
}

footer.bg-footer-theme .info-gob * {
  line-height: 1;
}

footer.bg-footer-theme .aviso-terminos a:first-child,
footer.bg-footer-theme .info-derechos span:first-child {
  border-right: 1px solid;
  border-radius: 0;
}

footer.bg-footer-theme .aviso-terminos a,
footer.bg-footer-theme .info-derechos span {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 10px;
}

/******************************
 * ** Estilos para plantilla ** ***********
 * */
h1.the_title {
  margin: 20px 0;
  font-size: 28px;
  border-left: 5px solid #bc955c;
  font-weight: 600;
  padding-left: 20px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* fondo oscuro */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 900px;
  width: 90%;
  text-align: justify;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.modal-content h2 {
  margin-top: 0;
  font-size: 20px;
}

.modal-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #800000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}