/* ESPECIAL */

.header__margin{
    height: 80px;
}






/* BANNER */

.banner {
    height: 75vh;
    display: flex;
    font-family: Obold;
}

.bannera1{ 
    background-image:
        linear-gradient(270deg, #003456b7, #002842),
        url(../content/banners/curso-de-odontologia.webp);
    background-position: center;
    background-size: cover;
    width: 100%;    
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 0 0 0 100px;    
    justify-content: center;
}

.bannera2{
        background-image: url(../content/banners/banner_bg.webp);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;     
        height: 100%;
        width: 100%;
}

.bannera3{
    width: 1.5%;
    background-color: var(--rosa);
}

.banner1img{
    height: 300px;
    width: 300px;
    border: 4px solid var(--amarillo);
    border-radius: 100%;
}

.banner1text{
    text-align: start;
    font-size: 30px;
    margin: 20px 0;
}

.banner1text h1{
    margin: 5px;
    color: white;
    font-family: Oregular;
}

.banner1text a{
    font-size: 16px;
    color: white;
    font-family: Oregular;
}


@media screen and (max-width: 850px){
    .bannera1{
        flex-direction: column;
        height: 50vh;
        align-items: center;
        padding: 0; 
    }
    .bannera2{
        height: 100%;
    }
    .bannera3{
        height: 20px;
        width: 100%;
    }
    .banner {
        background-position-x: -500px;
        flex-direction: column;
    }
    .banner1img{
        height: 150px;
        width: 150px;
        margin: 40px 0 0 0;
    }
    .banner h1{
        margin: 0px 20px;
        font-size: 30px;
        top: 200px;
        text-align: center;
    }
}











/*CURSO CALL ACTION*/

.cursos{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #013653;
    color: white;
    margin: 2%;
    
}

.cursos__callaction{
    background-image: url(../content/banners/taller-curso-de-biopsia-ceiao.webp);
    background-position: top;
    background-size: cover;
    height: 50vh;
    width: 100%;
    filter: grayscale(0%);
    transition: 0.5s;
    display: flex;
    align-items: end;
}





.fotomarce:hover,
.fotoricardo:hover{
    filter: grayscale(100%);
}

.sobremi{
    margin: 0 5%;
    width: 75%;

}

.nombre{
    font-size: 50px;
}

.especialidad{
    font-size: 30px;
    color: #27c1c1;
    position: relative;
    top: -50px;
}

.descripcion{
    font-size: 18px;
    position: relative;
    top: -50px;
}

.cursos__promo__aviso{
    background-color: var(--rojo);
    padding: 10px;
    width: 100%;
    font-size: 20px;
    margin: 0;
}


@media (max-width: 850px){
    .cursos{
        flex-direction: column;
    }
    .cursos__inv{
        flex-direction: column-reverse;
    }
}







/* SECCION DE EXPLICAR ONDEMAND */

.ondemand__ad{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 70vh;
    color: var(--azul-osc-medio);
    background-color: var(--gris-claro);
}

.oad__title h2{
    font-size: 50px;
    margin: 0;
}

.oad__title p{
    font-size: 20px;
    margin: 0 0 60px 0;
}

.oad__container{
    display: flex;
}

.oad__card{
    height: 40vh;
    max-width: 400px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.oad__icon{
    height: 250px;
    width: 250px;
}

.oad__subtitle{
    font-size: 40px;
    font-family: Obold;
    margin: 10px;
}

.oad__text{
    margin: 10px;
}


@media screen and (max-width: 850px){
    .ondemand__ad{
        height: auto;
    }
    .oad__container{
        flex-direction: column;
    }
    .oad__icon{
        height: 150px;
        width: 150px;
    }
    .oad__card{
        margin: 0px;
    }
    .oad__title h2{
        font-size: 40px;
        margin: 40px 0;
    }
    .oad__card{
        height: auto;
    }
}









/* === SECCIÓN DE TESTIMONIOS === */
.testimonials-section {
    background: #ffffff;
    padding: 4rem 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    font-size: 2.5rem;
    color: #003356;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 1.4rem;
    color: #003356;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.testimonials-container img{
    height: 80px;
}


/* Responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-name {
        font-size: 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}
















/* === SECCIÓN DE ACCESIBILIDAD === */
.accessibility-section {
    background: var(--azul-osc);
    padding: 4rem 1rem;
    text-align: center;
}

.accessibility-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    height: 40vh;
}

.accessibility-content {
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accessibility-content img{
    height: 50px;
    margin: 0;
}

.accessibility-title {
    font-size: 2.5rem;
    color: #003356;
    margin: 12px 0 0 0;
}

.accessibility-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accessibility-banner{
    background-image: url(../content/banners/estudiante-de-cursos-de-odontologia.webp);
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
}


















/* === MÉTODOS DE EDUCACIÓN === */
.education-methods-section {
    background: white;
    padding: 0 0 50px 0;
    color: white;
}



.education-methods-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;

}

.education-methods-title {
    font-size: 2.5rem;
    color: var(--azul-osc-medio);
    margin: 3rem 0;
}

.education-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.method-card1 {
    background: var(--azul-osc-medio);
    text-align: left;
    height: 640px;
}

.method-card2 {
    background: var(--azul-osc);
    text-align: left;
}



.method-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin: 50px 20px 10px 40px;
}



.method-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}



.mf__list{
    display: flex;
    align-items: center;
    
}

.mf__icon{
    height: 20px;
    margin: 0 10px 0 40px;
}

.mf__list p{
    font-size: 18px;
    margin: 5px 0;
    opacity: 0.9;
}

.mf__back1{
    height: 250px;
    background-image: url(../content/banners/modalidad-online.webp);
    background-size: cover;
    background-position: center;
}

.mf__back2{
    height: 250px;
    background-image: url(../content/banners/modalidad-ondemand.webp);
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 480px){
    .education-methods-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .method-card1 {
        height: auto;
    }
    .education-methods-section {
        padding: 0;
    }
}














/* VENTAJAS */

.ventajas__section{
    background-image:
        linear-gradient(270deg, #003456b7, #002842),
        url(../content/banners/clase-virtual-odontologia.webp);
    background-position: center;
    background-size: cover;
    height: 50vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;

}

.ventajas__section p{
    font-size: 50px;
    margin: 1% 10%;
}

.ventajas__section img{
    height: 80px;
}

@media screen and (max-width: 480px){
    .ventajas__section p{
        font-size: 30px;
    }
}










/* MISCELANEO */

.resaltar{
    color: var(--amarillo);
    font-family: Obold;
}
