:root {
    --color_primario: white;
    --color_primario_suave: #A569BD;
    --color_blanco: #fff;
    --altura_header: 80px;
    --padding_left_right: 2rem;
    --ancho_maximo: 1200px;
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
  font-family: "Montserrat", sans-serif ;
}

.a{
    text-decoration: none;
}

ol,ul{
    list-style: none;
}

.header{
        background-color: white;
    height: 4em;
    position: fixed;
    max-width: 100%;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    margin: auto;
    display: flex;
    float: left;


}

.navbar{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: min(1200px 100%) !important;
    margin: 0 auto;
    margin-left: 14em;
    margin-right: 3em;
}

/* MENU HAMBURGUESA */
.dropdown-toggle{
    background-color:#1c7675;
    border:none;
    font-size: 14px;
}

.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color:#F8F9F9!important;
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #1ed8cf!important;
}

/* MENU HAMBURGUESA */


.container-contacto {
       max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    margin-top: 5em;
}

#line-contacto{
    background-color: gray;
}


.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: -30px;
    width: 109%;
    height: 70%;
    border: 0;
}

.contact-info {
    margin-top: 20px;
}

.contact-info i {
    margin-right: 10px;
        
}
        
.social-icons a {
    color: #333;
    margin-right: 10px;
            font-size: 1.5em;
        }



.contact-form button:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    /* Estilos para tablets */
    .social-icons {
            width: 19em;
    margin-top: 3em;
    margin-left: 5em;
    }

}

h3 {
        font-size: 1.75rem;
        margin-top: 4em!important;
        text-align: center;
    }

.titulo hr{
      border: none; /* Quita el borde predeterminado */
      height: 4px; /* Altura de la línea */
      background: #888; /* Gradiente de colores */
      margin: 0 auto 20px auto; /* Margen */
      width: 70%; /* Ancho de la línea */
      border-radius: 4px; /* Radio de borde para la línea */
}

.container{
    max-width: 100%;
}

.contenido{
  columns: 2;
  margin-top:3em;
        
}

.contenido h4{
    margin: auto;
    text-align:center;
    width:90%;
    margin-left: 12%;
}

.contenido p{
    margin: auto;
    text-align:justify;
    width:90%;
    margin-left: 12%;
    margin-top: 2em;
    letter-spacing: 1px;
    line-height:inherit;
}

.contenido img{
    margin: auto;
    width:100%;
    clip-path: inset(0 0 0 30%);
    margin-left: -13%;
    max-height:40em;
    height:25em;
    margin-top:1em;
}


.btn-agendar {
    position: absolute!important;
    top: 95%;
    left: 33%;
    transform: translate(-50%, -50%);
    background-color: #1ed8cf;
    color: white;
    font-size: 1.1rem;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 1em;
    z-index: 1;
}


.btn-agendar:hover {
    background-color: #1c7675;
    transform: translate(-50%, -50%) scale(1.05); /* Efecto de zoom */
}


.linea-media {
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 0;
    color: black;
    background-color:#F8F9F9;
    margin-top:8em;
    max-height: 300px;
    height: 250px;
    text-align: center;
    font-weight: normal;
}

.linea {
    display: inline-block;
    width: 18%; /* Longitud de la línea */
    height: 2px;  /* Grosor de la línea */
    background-color:#1ed8cf; /* Color de la línea */
}

.icono {
    font-size: 24px; /* Tamaño del icono */
    color: white; /* Color del icono */
}



hr{
        border: none;
    height: 4px;
    background: #888;
    margin: 0 auto 20px auto;
    width: 70%;
    border-radius: 4px;
}

.carousel{
    width: 95%;
    margin: auto;
    display: flex;
    margin-top: 3em;
}

.carousel-inner img {
  width: 100%; /* Ajusta el ancho */
  max-height: 700px; /* Limita la altura */
  object-fit: cover; /* Evita deformaciones y mantiene el recorte */
  margin: 0 auto; /* Centra la imagen */
}

.tabla{
    margin: auto;
    display: flex;
    align-items: center;
}

table{
    margin: auto;
    display: flex;
}

th{
    padding: 12px 21px;
    font-weight:normal;
    color:#1c7675;
}

td{
    font-weight:bold;
    color: black;
    text-align: center;
}

h4 {
    color: #1c7675;
}


.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 180px;
    background-color: #49a798;
    color: white;
    padding-top: 20px;
    font-size: 16px;
    margin-top: 5em;
}
.sidebar a {
    display: block;
    padding: 21px 11px;
    color: white;
    text-decoration: none;
}
.sidebar a:hover {
  background-color: #A569BD;
}

.content {
    
    width: 52em;
    height: 100%;
    margin-left: 12em;
    margin-top: 1em;
}


.dataTables_wrapper {
    border: white solid;
    position: relative;
    clear: both;
    width: 51em;
    margin-left: 13em;
}




.a{
    text-decoration: none;
}

ol,ul{
    list-style: none;
}

.navbar{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: min(1200px 100%)!important;
    margin: 0 auto;
    margin-right: 3em;
    align-items: flex-end;
}

/* MENU HAMBURGUESA */
.dropdown-toggle{
    background-color:#1c7675;
    border:none;
    font-size: 14px;
}

.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color:#F8F9F9!important;
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #1ed8cf!important;
}

/* MENU HAMBURGUESA */

.menu_hamburguesa{
    display: none;
}

.menu_hamburguesa:checked + .ul_links{
     height: calc(100vh - var(--altura_header));
}

.logo {
    margin: 0px;
    margin-left: 4em;
}
.label_hamburguesa{

}

.list_icon{
    cursor: pointer;
}

.ul_links{
    width:100%;
    background-color:white;
    position: absolute;
    top: var(--altura_header);
    left: 0;
    height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    transition: all .3s;
}

.li_links{


}


.link{
    font-size:12px;
    color: black;
    font-weight: lighter;
    text-decoration: none;
}


@media (min-width: 768px){
    .label_hamburguesa{
        display: none;
    }

    .ul_links{
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        gap: 1rem;
        background-color:white;
    }

    .link{
                font-size: 23px;
        padding: .2rem .7rem;
        font-family: lato-regular;
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .link:hover{
    background-color: #49a798;
    color: black;
    border-radius: 7px;
    opacity: 0.4;
    font-weight: 200;
    transition: all 0.4s linear;

    }
}


.whatsapp {
    width: 30px;
    height: 30px;
    padding: 0 24px 0;
}

.WidgetTitle__Header-sc-ruy1gu-2 huflDf{
    display: none!important;
}

.bOAeit {
    position: relative;
    z-index: 1;
    overflow: hidden;
    flex: 1 1 0%;
    margin-top: -5em;
}

.huflDf {
    line-height: 1.32;
    text-wrap: balance;
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    color: rgb(17, 17, 17);
    display: none;
}







.main-footer {
    background-color: #F8F9F9;; /* Fondo oscuro */
    color: white; /* Texto blanco para contraste */
    text-align: center;
    padding: 30px 10px; /* Espaciado alrededor */
    font-family: Arial, sans-serif; /* Fuente moderna y limpia */
    margin-top: 12em;
}

/* Línea decorativa en el pie de página */
.line-footer, .line-footerx {
    border-top: 1px solid #444; /* Línea sutil */
    margin: 20px 0;
}

/* Logo en el footer */
.logo-footer img {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Sección de contactos */
.contacto-footerHelp {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

/* Iconos de redes sociales */
.contacto-footer a {
    margin: 10px;
    display: inline-block;
}

.contacto-footer img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.contacto-footer img:hover {
    transform: scale(1.2); /* Efecto hover para hacer los iconos más grandes */
}

/* Sección de copyright y enlaces */
.copyright {
    margin-top: 20px;
}

.copyright div {
    font-size: 14px;
    margin: 5px 0;
    color: #bbb; /* Color gris claro */
}

.copyright div:hover {
    text-decoration: underline; /* Subrayado al pasar el ratón */
}

/* Línea inferior con derechos reservados */
.line-footerx {
    font-size: 12px;
    color: #bbb;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .contacto-footerHelp {
        flex-direction: column;
    }

    .contacto-footer {
        margin-top: 20px;
    }

    .copyright div {
        font-size: 12px; /* Reduce el tamaño de texto en pantallas pequeñas */
    }

    .logo-footer img {
        max-width: 120px; /* Reduce el tamaño del logo en pantallas pequeñas */
    }

    .contacto-footer a img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 20px 5px;
    }

    .contacto-footer a img {
        width: 20px;
        height: 20px;
    }

    .copyright div {
        font-size: 12px;
        margin: 3px 0;
    }

    .logo-footer img {
        max-width: 100px; /* Reduce aún más el tamaño del logo en pantallas muy pequeñas */
    }
}

