

   
   .tabla-centrada {
    border-collapse: collapse; /* Elimina el espacio entre bordes */
    margin: auto; /* Centra la tabla horizontalmente */
  }
  
  /* Estilo para las celdas */
  .tabla-centrada th,
  .tabla-centrada td {
    padding: 0; /* Espacio interior vertical mínimo */
    border: 1px solid #ccc; /* Opcional: bordes para celdas */
    text-align: center; /* Centrado por defecto */
    vertical-align: middle; /* Centrado vertical */
  
  }
  
  /* Alineación específica para las columnas */
  .tabla-centrada td:first-child {
    text-align: left; /* Primera columna alineada a la izquierda */
  }
  
  .tabla-centrada td:nth-child(2) {
    text-align: center; /* Segunda columna centrada */
  }



.tp_logo {
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  letter-spacing: -0.05em;
  font-size: larger;
  color: #8b1d6a;
}

.tp_logo_n {
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  letter-spacing: -0.05em;
  color: #8b1d6a;

}


/* TP LETRAS ENLACES ETC */
.TP {
  font-size: 25px;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  color: rgb(70, 70, 70);
  text-decoration: none;
  line-height: 0.8;
}

/* Ensure that links with the TP class don't get underlined */
.TP a {
  text-decoration: none;
  color: rgb(70, 70, 70); /* Ensure the color stays gray */
}

/* Ensure that visited links with the TP class don't change color */
.TP a:visited {
  color: rgb(70, 70, 70);
}

.TP a:hover {
    color: rgb(195, 0, 255); /* Cambia a color rojo cuando se pone el cursor encima */
}



/* CSS para la clase table-no-border */
.tnb {
    border-collapse: collapse; /* Elimina los espacios entre los bordes */
    border: none
}

.tnb th, .tnb td {
    border: none; /* Quita los bordes de las celdas */
    text-align: left; /* Alinea el contenido de las celdas a la izquierda */
}

/* CUSTOM------------ */

/* table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
} */


.table_c {
  border-collapse: collapse;
  width: 100%;
}

.th_c {
  padding: 10px;
  text-align: left;
  font-family: 'Rock Salt';
}

.td_c {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.tr_c:hover {background-color: rgb(241, 206, 153);}





/* MAPA */

* {
  margin: 0;
  box-sizing: border-box;
  }

  #map { height: 100%; }

@media (max-width: 987px) {
    #map {
      height: 52vh;
    }
    .form-control{
      height: 15vh;
    }
  }
  
.contenedor {
    display:flex;
    flex-direction: column;
    min-height:88vh;
    height: 88vh;
    overflow-y: hidden;
    overflow-x: hidden;
}

.contenedor > div {
  flex:1;
  display:flex;
}

.fila0 {  
  align-items: center;
  height: 88vh;
}
.fila1 {
  min-height: 0;
  padding-top: 0;
  align-items:start; 
  height: 88vh;
  }
  
.no_esp {
  /* font-family: 'Courier Prime', monospace; */
  font-family: 'Titillium Web';
  font-size:12pt;
  line-height: 1;
}


/* MAPA-2 */

.scr-ver {
  height: 80vh; /* Ajusta según sea necesario */
  overflow-y: auto; /* O 'auto' para que aparezca solo cuando sea necesario */
}

.contenedor-b {
  display: flex;
  flex-direction: column;
  min-height: 88vh;
  height: 88vh;
  overflow-y: hidden;
  overflow-x: hidden;
}

.contenedor-b > div {
  flex: 1;
  display: flex;
}

.fila0-b {
  align-items: center;
  height: 88vh;
}

.fila1-b {
  min-height: 0;
  padding-top: 0;
  align-items: start;
  height: 88vh;
}

.map2 {
  height: 86vh;
}

/* Para pantallas verticales */
@media screen and (max-width: 768px) {
  .map2 {
    height: 40vh !important;
  }
  .scr-ver {
    height: 50vh;
  }
}




/* --------------------------------- */



body {
  /* font-family: 'Courier Prime', monospace; */
  font-family: 'Titillium Web';
  font-size:12pt;
  /* background: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.45)), url("../img/bg_main.jpg"); */
  background-color: rgb(219, 214, 214);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

p {
  /* font-family: 'Courier Prime', monospace; */
  font-family: 'Titillium Web';
  line-height: 1.25;
}

.text-faded {
  color: rgba(255, 255, 255, 0.6);
}

.site-heading {
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
  line-height: 1;
  font-family: 'Mukta';
}

.site-heading .site-heading-upper {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.site-heading .site-heading-lower {
  font-size: 3rem;
  font-weight: 100;
  line-height: 4rem;
}

.page-section {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.section-heading {
  font-family: 'Mukta';
}

.section-heading .section-heading-upper {
  display: block;
  font-size:1rem;
  font-weight: 800;
  padding-bottom:.5rem;

}

.section-heading .section-heading-lower {
  display: block;
  font-size: 2rem;
  font-weight: 100;
}


.section-heading .section-heading-under {
  display: block;
  font-size: 4rem;
  text-transform: none;
  font-weight: 300;
  margin-top:.5rem;
}

.bg-faded {
  background-color: rgba(255, 255, 255, 0.75);
}

#mainNav {
  background-color: #00337F;
  /* font-family: 'Raleway'; */
  font-family: 'Courier Prime', monospace;

}

#mainNav .navbar-brand {
  color: #ffffff;
}

#mainNav .navbar-nav .nav-item .nav-link {
  color: rgba(255, 255, 255);
  font-weight: 800;
  /* font-family: 'Titillium Web'; */
  font-family: 'Courier Prime', monospace;

}

#mainNav .navbar-nav .nav-item.active .nav-link {
  color: #ffffff;
  text-decoration: underline;
}

@media (min-width: 992px) {
  #mainNav .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
  }
  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
  }
  #mainNav .navbar-nav .nav-item.active .nav-link:hover {
    color: #ffffff;
    text-decoration: underline;
  }
}

.btn-xl {
  font-weight: 700;
  font-size: 0.8rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.intro {
  position: relative;
}

@media (min-width: 992px) {
  .intro .intro-img {
    width: 60%;
    float: left;
  }
  .intro .intro-text {
    left: 600;
    width: 60%;
    margin-top: 1rem;
    background-color: #7E6B67;
    color: cornsilk;
    position: absolute;
  }
  .intro .intro-text .intro-button {
    width: 100%;
    left: 0;
    position: absolute;
    bottom: 1rem;
  }
}

@media (min-width: 1200px) {
  .intro .intro-text {
    width: 45%;
  }
}


.container {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  width: 90%;
}

.cta {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.cta .cta-inner {
  position: relative;
  padding: 0.1rem;
  margin: 0.5rem;
  background-color: #97eb60;
  /* color: cornsilk; */
}

.cta .cta-inner:before {
  border-radius: 0.5rem;
  content: '';
  position: absolute;
  top: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem;
  right: -0.5rem;
  border: 0.25rem solid #677e67;
}

.cta .cta-innerv {
  position: relative;
  padding: 3rem;
  margin: 0.5rem;
  background-color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 992px) {
  .about-heading .about-heading-img {
    position: relative;
    z-index: 0;
  }
  .about-heading .about-heading-content {
    margin-top: -5rem;
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 992px) {
  .product-item .product-item-title {
    position: relative;
    z-index: 1;
    margin-bottom: -3rem;
  }
  .product-item .product-item-img {
    position: relative;
    z-index: 0;
    max-width: 60vw;
  }
  .product-item .product-item-description {
    position: relative;
    z-index: 1;
    margin-top: -3rem;
    max-width: 50vw;
  }
}

@media (min-width: 992px) {
  .list-hours {
    width: 50%;
    font-size: 1.1rem;
  }
}

.address strong {
  font-size: 1.2rem;
}

.footer {
   background-color: #00337F;
}

.btn {
  box-shadow: 0px 3px 3px 0px rgba(33, 37, 41, 0.1);
}

.font-weight-light {
  font-weight: 100 !important;
}

.mbtm{
  padding-top: 5rem;
}

.mbt{
  padding-top: 2rem;
}

.mbt1{
  padding-top: 1.25rem;
}

a.link{ 
  text-decoration:wavy;


  color: #3066fa;
}

a.link:hover{
  text-decoration: none;
  color: #e97aff;
}

a.link_foot{
  color: rgba(255, 255, 255,0.8);
  font-size:smaller;
}

a.link_foot:hover{
  text-decoration:underline;  
  color: rgba(255, 255, 255, 0.8);
}

.section-content{
  font-family: 'Mukta' !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}

ul.errorlist{
  padding-top: .75rem;
  font-style: italic;
  color: red;
}

.block {
  margin: auto;
  display: block;
  width: 30%;
  border: none;
  background-color: #a119b3;
  padding: 14px 28px;
  font-size: 16px;
  color: white;
  cursor: pointer;  
  text-align: center;
}

.block:hover {
  background-color: #ff9393;
  color: black;
}



.card-header {
  background-color: #bdbdbd;
  font-size: 16px;
  color: black;
  cursor: pointer;  
  text-align: center;
}

.card-header:hover {
  background-color: #a119b3;
  color: white;
}

.btn-outline-primary {
  color: #a119b3;
  background-color: transparent;
  background-image: none;
  border-color: #a119b3;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #a119b3;
  border-color: #a119b3;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(#a119b3);
}


.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem #a119b3;
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #a119b3;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #a119b3;
  border-color: #a119b3;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem #a119b3;
}




