/* Toda la página */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h2{
    font-weight: 500;
    font-size: 2em;
}

.h2_larger{
    font-weight: bold;
    font-size: 1.3em;
}

.h2_smaller{
    font-weight: bold;
    font-size: 0.5em;
}

h3{
    font-weight: 500;
    font-size: 2.4em;
    color: white;
}

h6{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: normal;
    color: white;
}

/* Sección principal */
.main_section {
    height: 100vh;
    display: flex;
    padding-left: 7%;
    padding-right: 7%;
}

.main_subsection{
    flex: 1;
}

.main_section_img{
    max-width: 100%;
    object-fit: contain;
    width: 100%;
    max-height: 100%;
    /* height: 100%; */
}

 /* Estilos header */
 nav.navbar {
    padding-top: 40px;
    background-color: white !important;
    width: 100%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    z-index: 1000;
}

nav.navbar a.nav-link {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    margin-right: 10px;
}

nav.navbar a.nav-link :hover{
    color: #967AA0 !important;
}

/* Estilos mytime */
.mytime_logo{
    max-width: 90%;
    margin-bottom: 1.4em;
}

.text {
    font-size: 1.2em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 100%;
}

.mytime_button{
    background-color: #967AA1;
    width: 200px;
    padding: 10px;
    border-radius: 2em;
    border: none;
    margin-top: 1.4em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.1em;
    color: white;
    text-align: center;
}

/* Estilo titulo */
.main_title{
    padding: 40px 7% 40px 7%;
}

/* Estilo salud mental */
.fotorama{
    max-width: 60%;
}

.fotorama_button{
    background-color: #967AA1;
    width: 100px;
    padding: 10px;
    border-radius: 2em;
    border: none;
    margin-top: 1.4em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.1em;
    color: white;
    text-align: center;
}

.img_container{
    display: flex;
    justify-content: center;
}

.btn_center{
    display: flex;
    justify-content: center;
}

/* Estilo meditación */
.fondo{
    background-color: #E8DCF3;
}

.meditacion_nopadding{
    padding: 100px 0 100px 0;
}

.meditacion_left_padding{
    padding-left: 7%;
}

.meditacion_right_padding{
    padding-right: 7%;
}

/* Estilo actividades */
.titulo_diferente{
    color: white;
    padding: 40px 0 40px 0;
}

.actividades {
    background-color: #AAA1C8;
    min-height: 100vh;
    padding: 0 7% 0 7%;
}

.reservas {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    max-height: 100%;
    max-width: 100%;
}

.reservas img {
    max-width: 100%;
    padding: 0 5% 5% 0;
}

.actividades_div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

}

/* Estilos footer */
footer {
    background-color: #192A51;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo_final {
    background-color: white;
    max-height: 70%;
    max-width: 70%;
    width: 130px;
    padding: 10px;
    margin: 30px;
    border-radius: 1em;
    border: none;
}

.footer_img{
    max-width: 100%;
}

/* Estilos mytime, no el home */
.prpl_center{
    text-align: center;
    color: #967AA1;
    font-weight: bold;
}

.section_80{
height: 80vh;
}

.section_60{
    height: 60vh;
}

.mytime_img{
    max-width: 100%;
    padding: 0 10% 0 10%;
}

/* Estilos podcast */
.prpl{
    color: #967AA1;
}

.center{
    text-align: center;
    font-weight: bold;
}

.ver_center{
    align-items: center;
}

.fotorama_limits{
    max-width: 400px;
}

/* Estilos nosotros */
.us_img{
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
}

.img_mid{
    max-width: 35%;
}

.hidesmall{
    display: flex;
}

.unhidesmall{
    display: none;
}

.formulario{
    display: flex;
    height: 80vh;
}

.left_loginregistreo{
    display: flex;
    justify-content: center;
    width: 50%;
}

.right_loginregistreo{
    width: 50%;
}

.form-control {
    background-color: #E0E0E0;
    border-radius: 40px;
}

.btn-primary {
    background-color: #967AA0 !important;
    border-radius: 40px;
    color: white;
}

::placeholder {
    color: darkgrey !important;
}

.bold{
    font-weight: bold !important;
}

.alt_login{
    padding-top: 20px;
}

.largeicon{
    font-size: 2em !important;
}

/* Diseño responsivo */
/* Pequeño */
@media only screen and (max-width: 600px) {
    .main_section {
        flex-direction: column; /* Stack sections vertically on small screens */
        padding-left: 5%;
        padding-right: 5%;
    }

    .header li {
        display: none;
    }

    .text{
        font-size: 1em;
    }

    h2{
        font-size: 1.2em;
    }

    .main_section {
        display: flex;
        padding-left: 7%;
        padding-right: 7%;
        justify-content: center;
    }

    .main_subsection{
        margin-left: auto;
        margin-right: auto;
    }

    .main_section_img{
        position: relative;
        left: 15%;
        max-width: 60%;
    }

    .fotorama{
        max-width: 40%;
    }

    .img_container{
        display: flex;
        justify-content: center;
        max-width: 400px;
    }

    .btn_center{
        display: flex;
        justify-content: center;
    }

    .section_80{
        height: 70vh;
    }

    .hidesmall{
        display: none;
    }

    .unhidesmall{
        display: flex;
    }

    .reservas{
        flex-direction: column;
        margin: 0;
        padding: 0 0 50px 0;
    }

    .act_img{
        margin-top: 40px;
        width: 50%;
    }
}

.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 250px;
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}

.offcanvas.show {
    transform: translateX(0);
}

.unhidemobile{
    display: none;
}

@media (max-width: 575px) {
    .hidemobile{
        display: none;
    }
    
    .unhidemobile{
        display: block;
    }
}

@media (max-width: 750px) {
    .formulario{
        flex-direction: column;
    }

    .left_loginregistreo{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .left_loginregistreo img{
        max-width: 300px;
    }

    .hidemobile{
        display: none;
    }

    .unhidemobile{
        display: flex;
    }
}

/* Mediano */
@media (max-width: 991px) {
    
}

/* Grande */
@media (max-width: 1100px) {
    nav.navbar a.nav-link {
        font-size: 0.5em;
        text-align: right;
        padding-left: 2em;
    }
}

@media (max-width: 1500px) {
    nav.navbar a.nav-link {
        font-size: 0.7em;
        text-align: right;
        padding-left: 2em;
    }
}