/* =====================================================
   CONTORNO CORPORAL
===================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: #fff;

    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}


/* ================= HEADER ================= */

.mini-header {
    height: 130px;

    padding: 0 4%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #282828;
}


.logo-link img {
    width: 255px;
    height: auto;
    display: block;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}



/* ================= AGENDAR ================= */

.btn-cita {
    height: 48px;

    padding: 0 25px;

    border: 1px solid #aaa;
    border-radius: 30px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    text-decoration: none;

    font-size: 11px;
    letter-spacing: 3px;

    transition: .3s ease;
}

.btn-cita svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: #fff;
    stroke-width: 1.4;
}

.btn-cita:hover {
    background: #fff;
    color: #000;
}

.btn-cita:hover svg {
    stroke: #000;
}


/* ================= TÍTULO ================= */

.resultados {
    width: 94%;
    max-width: 1500px;

    margin: auto;

    padding: 38px 0 65px;
}


.titulo-seccion {
    text-align: center;

    margin-bottom: 28px;
}


.kicker {
    display: block;

    font-size: 12px;
    letter-spacing: 6px;

    margin-bottom: 13px;
}


.titulo-seccion h1 {
    font-family: 'Playfair Display', serif;

    font-size: 48px;
    font-weight: 400;

    line-height: 1.1;
}


.linea {
    display: block;

    width: 75px;
    height: 1px;

    background: #aaa;

    margin: 20px auto 0;
}


/* ================= GALERÍA ================= */

.galeria {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

    align-items: start;
}


.foto {
    width: 100%;

    padding: 7px;

    border: 1px solid #292929;
    border-radius: 8px;

    background: #0b0b0b;

    overflow: hidden;
}


.foto img {
    width: 100%;
    height: auto;

    display: block;

    border-radius: 4px;

    object-fit: contain;

    transition: transform .35s ease;
}


.foto:hover img {
    transform: scale(1.025);
}


/* ================= FIRMA ================= */

.firma-doctor {
    margin-top: 55px;
}


.firma-linea {
    width: 85%;
    height: 1px;

    background: #333;

    margin: auto;
}


.doctor-info {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 22px;

    margin-top: 30px;
}


.doctor-info img {
    width: 120px;
    height: 120px;

    border-radius: 50%;

    object-fit: cover;

    border: 1px solid #777;
}


.doctor-info h2 {
    font-family: 'Montserrat', sans-serif;

    font-size: 20px;
    font-weight: 300;

    margin-bottom: 10px;
}


.doctor-info span {
    font-size: 10px;
    letter-spacing: 5px;

    color: #aaa;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    .galeria {
        grid-template-columns: repeat(3, 1fr);
    }

    .logo-link img {
        width: 210px;
    }

}


@media (max-width: 700px) {

    .mini-header {
        height: 75px;
    }

    .logo-link img {
        width: 170px;
    }

    .header-right {
        gap: 12px;
    }

    .idioma {
        display: none;
    }

    .btn-cita {
        height: 42px;
        padding: 0 15px;

        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .galeria {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .titulo-seccion h1 {
        font-size: 35px;
    }

    .kicker {
        font-size: 9px;
        letter-spacing: 4px;
    }

}


@media (max-width: 430px) {

    .galeria {
        grid-template-columns: 1fr;
    }

    .resultados {
        width: 90%;
    }

    .doctor-info img {
        width: 90px;
        height: 90px;
    }

    .doctor-info h2 {
        font-size: 15px;
    }

}