*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 16px;
}

@media(min-width: 800px){
    html{
        font-size: 20px;
    }
}

@media(max-width: 378px){
    html{
        font-size: 14px;
    }
}
@media(max-width: 340px){
    html{
        font-size: 12px;
    }
}
@media(max-width: 315px){
    html{
        font-size: 10px;
    }
}


body {
    font-family: 'Quicksand', sans-serif;
    scroll-behavior: smooth;
}

.principal {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

    /* Barra superior */
    .barra-superior {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: 6rem;
        padding: 0.5rem;
        align-items: center;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
        .barra-superior .contenedor-logo{
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
            .barra-superior .contenedor-logo img{
                width: 4rem;
            }

        .barra-superior .contenedor-menu{
            /* margin-left: 2rem; */
            width: 4rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid #9d7ac8cc;
            /* background-color: #9d7ac8cc; */
            border-radius: 5px;
        }

            .barra-superior .contenedor-menu i{
                /* padding: 0.3rem; */
                color:#7745b0cc;
                font-size: 1.5rem;
                /* background-color: #9d7ac8cc ; */
            }

        .barra-superior h1 {
            margin: 0;
            font-size: 1.2rem;
            color: #333;
            font-family: 'Quicksand', sans-serif;
            /* font-family: 'Cormorant Garamond', serif; */
            /* font-weight: bold; */
        }

@media (max-height: 850px) {
    .barra-superior{
        height: 4.5rem;
    }
}

@media(min-width: 800px){
    .barra-superior{
        display: none;
    }
    .principal{
        height: unset;
    }

    .barra-superior{
        justify-content: center;
    }
    .barra-superior h1{
        width: unset;
        display: none;
    }
    .barra-superior .contenedor-menu{
        display: none;
    }
}

/* Contenido debajo del header */
.contenido-principal {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-grow: 1;
}
    .contenido-principal .contenedor-img{
        /* background-color: #9d7ac8cc; */
        position: relative;
        height: 50vh;
        background-color: #000;
    }
        .contenido-principal .contenedor-img .contenedor-texto{
            top: 0;
            height: 100%;
            width: 100%;
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            color: #ffffff;
            z-index: 100;
            font-family: 'Sawarabi Mincho', serif;
        }
            .contenido-principal .contenedor-texto .contenedor-logo{
                height: 5rem;
                width: 5rem;
                /* background-color: blue; */
                margin: 0;
            }
                .contenido-principal .contenedor-texto .contenedor-logo img{
                    height: 100%;
                    width: 100%;
                    opacity: 100%;
                    object-fit: contain;
                }


            .contenido-principal .contenedor-img .contenedor-texto h2{
                font-size: 2rem;
                margin: 0.5rem;
            }
            .contenido-principal .contenedor-img .contenedor-texto h3{
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }
            .contenido-principal .contenedor-img .contenedor-texto p{
                font-family: 'Quicksand', sans-serif;
                font-weight: bold;
                margin-bottom: 0.5rem;
            }
            .contenido-principal .contenedor-img .contenedor-texto .img-texto{
                opacity: 100%;
                height: 2rem;
                object-fit: contain;
            }
            
        .contenido-principal .contenedor-img img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 40%;
        }

    /* Botón de contacto */
    .boton-contacto {
        margin: 0.5rem;
        width: 50%;
        align-self: center;
        background-color: #975ae2;
        color: white;
        padding: 0.8rem 1.5rem;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        font-family: 'Quicksand', sans-serif;
    }

@media(min-width: 800px){
    .contenido-principal .contenedor-img{
        height: 65vh;
        display: flex;
        justify-content: center;
    }

        .contenido-principal .contenedor-img .contenedor-texto{
            width: 30rem;
        }

    .boton-contacto{
        width: 10rem;
    }
}
        

.boton-contacto:hover {
    background-color: #bc8bf8;
    transform: translateY(2px);
}


/* COMENTARIOS */

.contenedor-comentarios{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: #efeae4;
}
    .contenedor-comentarios h3{
        padding:0 1rem;
        font-size: 0.8rem;
    }

.comentarios-responsive{
    display: none;
}
.comentarios{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12rem;
}
.comentarios-tarjeta{
    background-color: #fff;
    font-size: 0.6rem;
    width: 25rem;
    box-shadow: 0px 0px 3px #975ae2;
    padding: 0.5rem;    
    border-radius: 1rem;
    margin: 0.5rem;
    display: flex;
    flex-direction: column;
}
.user-rating{
    text-align: left;
}
.star{
    color: orange;
    font-size: 1rem;
}
.comentarios-descripcion{
    font-size: 0.8rem;
    padding: 0.5rem;
    flex-grow: 1;
}
.comentario-icono{
    height: 2rem;
}

/* Animacion comentarios */
.comentarios-tarjeta {
    transition: opacity 0.6s ease-in-out;
    opacity: 1;
  }
  
  .comentarios-tarjeta.fade-out {
    opacity: 0;
  }
  
  .comentarios-tarjeta.fade-in {
    opacity: 1;
  }
  

.comentarios-autor{
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    color: #975ae2;
}

.comentarios-botones{
    display: flex;
    justify-content: center;
    padding: 1rem;
}
.comentarios-botones_btn{
    font-size: 1.2rem;
    margin: 0 0.5rem;
    padding: 0.5rem;
    background-color: orange;
    border: unset;
    cursor: pointer;
    border-radius: 0.4rem;
}
.comentarios-botones_btn:hover{
    background-color: #f2c84c;
}


@media (max-height: 800px) {
    .comentario-icono {
      display: none;
    }
}

@media(min-width: 800px){
    .contenedor-comentarios{
        padding: 2rem;
        background-color: #fff;
        width: 100%;
        overflow: hidden;
        display: flex;
    }
        .contenedor-comentarios h3{
            padding: 1rem;
            font-size: 1.5rem;
        }
    .comentarios{
        height: unset;
        flex-wrap: wrap;
    }
    .comentarios-tarjeta{
        height: 11rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
        .comentarios-descripcion{
            flex-grow: unset;
        }


    .comentario-icono {
        display: none;
    }
}


/* SERVICIOS */
.servicios{
    background-color: #784eac;
    color: #fff;
    text-align: center;
}
    .seccion-titulo-contenedor{
        padding: 1rem;
        font-size: 1.5rem;
        font-family: Arial, Helvetica, sans-serif;
    }
    
    .contenedor-servicios{
        width: 100%;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .servicio-card{
            height: 38rem;
            width: 20rem;
            max-width: 90%;
            background-color: #fff;
            color: #000;
            box-shadow: 0px 0px 3px #000;
            border-radius: 10px;
            padding: 1rem;
            margin: 1rem;
            text-align: center;

            display: flex;
            flex-direction: column;
        }
            .servicio-card-img-container{
                height: 60%;
                width: 100%;
            }
                .servicio-card-img-container img{
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                }
            .servicio-card h2{
                margin-bottom: 1rem;
            }
            .servicio-card-texto{
                flex-grow: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1rem;
            }
                .servicio-card-texto p{
                    
                }


@media(min-width: 850px){

    .servicios{
        padding: 1rem 0;
        padding-bottom: 3rem;
    }
    .contenedor-servicios{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .servicio-card{
        height: 38rem;
    }
    .servicio-card:hover{
        transform: scale(1.05);
        transition: 0.3s;
        cursor: pointer;
    }
        .servicio-card-texto{
            /* font-size: 0.8rem; */
        }
}


/* SOBRE MI */
.sobre-mi{
    height: 100vh;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center
}
    .sobre-mi .seccion-titulo-contenedor{
        color: #975ae2;
        margin: 0;
        padding: 0;
    }
    .sobre-mi_text_container{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
        .sobre-mi_textos b{
            font-size: 1.2rem;
            color: #975ae2;
        }
        .sobre-mi_textos p{
            font-size: 1rem;
        }
    .sobre-mi_barra{
        display: block;
        height: 5px;
        width: 60%;
        background-color: #975ae2;
        border-radius: 5px;
    }

@media(min-height: 600px){
    .sobre-mi_textos p{
        font-size: 1.2rem;    
    }
    .sobre-mi_textos b{
        font-size: 1.4rem;
    }
}
@media(min-height: 700px){
    .sobre-mi_textos p{
        font-size: 1.3rem;    
    }
    .sobre-mi_textos b{
        font-size: 1.6rem;
    }
}
@media(min-height: 800px){
    .sobre-mi_textos p{
        font-size: 1.6rem;    
    }
    .sobre-mi_textos b{
        font-size: 1.8rem;
    }
}
@media(min-height: 1000px){
    .sobre-mi_textos p{
        font-size: 1.7rem;    
    }
    .sobre-mi_textos b{
        font-size: 2.1rem;
    }
}


@media(min-width: 850px){
    .sobre-mi_text_container{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70%;
    }
}




/* SESIONES */
.sesiones{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #784eac;
}
    .sesiones .seccion-titulo-contenedor{
        color: #fff;
        margin-top: 2rem;
    }

    .sesiones-container{
        /* background-color: #fff; */
        height: 70%;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    
        .video-container{
            height: 100%;
            width: 95%;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
            .video-container video{
                border: 3px solid #fff;
                height: 90%;
                flex-grow: 1;
                object-fit: cover;
            }
            .video-container img{
                opacity: 100%;
            }

            .video-dots {
                height: 10%;
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 10px;
                gap: 8px;
                background-color: #bc8bf8;
                border-radius: 0 0 1rem 1rem;
                border: 3px solid #fff;
              }
              
              .video-dot {
                width: 1.5rem;
                height: 1.5rem;
                border-radius: 50%;
                background-color: #784eac;
                cursor: pointer;
                transition: background-color 0.3s ease;
              }
              
              .video-dot.active {
                background-color: #fff;
              }

@media(min-width: 850px){
    .sesiones-container{
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-evenly;
    }
        .video-container{
            width: 30%;
            height: 100%;
        }
            .video-container video{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .video-dots{
                display: none;
            }
}


/* CONTACTO */
.contacto{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #efeae4;
    text-align: center;
}

    .seccion-titulo-contenedor{
        /* background-color: red; */
        /* flex-grow: 1; */
    }

    .contacto-contenedor{
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer{
        background-color: #975ae2;
        color: #fff;
        width: 100%;
        padding: 1rem;
    }


/* CONTACTO */
.informacionDeContacto{
    position: relative;
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
}
    .IDC_top{
        width: 100%;
        display: flex;
    }
    
    .IDC_contacto{
            background: #975ae2;
            color: #fff;
            border: 1px solid #0004;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0.5rem;
        }
            .IDC_contacto div{
                padding: 0.5rem;
            }

    .IDC_mapa{
        max-height: 25rem;
        min-height: 10rem;
        flex-grow: 1;
        width: 100%;
        background-color: #fff;
    }
        .IDC_iframe{
            width: 100%;
            height: 100%;
        }

    .IDC_redes{
        background-color: #fff;
        width: 100%;
    }
        .IDC_redes a{
            background-color: #975ae2;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.7rem;
            margin: 0.4rem;
            border-radius: 10px;
            cursor: pointer;
            box-shadow: 1px 1px 1px #000;
        }
        .IDC_redes a:hover{
            background-color: #bc8bf8;
            transform: translateY(2px);
        }
            .IDC_redes i{
                color: #fff;
                margin-right: 0.3rem;
                font-size: 1.5rem;
            }

@media (max-height: 800px) {
    #contacto2{
      display: none;
    }
}

@media(min-width: 850px){

    .informacionDeContacto{
        flex-direction: row;
        height: 55vh;
        background-color: #efeae4;
        border: unset;
    }
    #contacto2{
        display: block;
    }

        .IDC_iframe{
            width: 100%;
            height: 100%;
        }
        .IDC_top{
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            align-items: center;
            justify-content: space-between;
            width: 40%;
            border: 10px solid #fff;
            margin-right: 3rem;
        }
        .IDC_mapa{
            border: 10px solid #fff;
            height: 100%;
            max-height: unset;
        }

            .IDC_contacto{
                height: 55%;
                border: unset;
                border-bottom: 10px solid #fff;
            }

            .IDC_redes{
                background-color: #975ae2;
                bottom: 0;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                justify-content: space-evenly;
                display: none;
                align-items: center;
                font-weight: bold;
            }
                .IDC_redes a{
                    background-color: #fff;
                    color: #975ae2;
                    height: 4rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                .IDC_redes i{
                    color: #975ae2;
                }
    
}


/* SideBar */
#menu-btn {
    font-size: 1.5rem;
    padding: 10px 15px;
    margin: 10px;
    cursor: pointer;
  }
  
  .sidebar {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100vh;
    background-color: #784eac;
    color: white;
    transition: right 0.3s ease;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }
  
  .sidebar.active {
    right: 0;
  }
  
  #close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    float: right;
    cursor: pointer;
  }
  
  .sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 40px;
  }
  
  .sidebar ul li a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    transition: color 0.2s;
  }

  /* submenu */
  .submenu{

  }

  .submenu .submenu-items {
    display: none;
    margin-left: 15px;
    margin-top: 5px;
  }

  .submenu .submenu-items a {
   font-size: 1rem;
  }
  
  .submenu.active .submenu-items {
    display: block;
  }
  
  .submenu .submenu-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    /* background-color: red; */
  }
  
  .submenu .caret {
    /* background-color: blue; */
    font-size: 1rem;
    margin: none;
    margin-left: 1rem;
  }


/* WP*/
.float{
    padding: 10px;
    position: fixed;
    background-color: #25d366;
    bottom: 10px;
    right: 10px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 3px #999 ;
    z-index: 999;
}

.fa-whatsapp{
    font-size: 35px;
}
.float:hover{
    background-color: #2aea71;
}
/* Generales */
.separador{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
    .separador img{
        height: 5rem;
    }
.responsive{
    display: none;
}
.responsive-flex{
    display: none;
}
@media(min-width: 800px){
    .responsive{
        display: block;
    }
    .responsive-flex{
        display: flex;
    }
}



