* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}


/* ================= HERO ================= */

.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.fondo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.18);
    z-index: 2;
}


/* ================= HEADER ================= */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    padding: 0 7.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.15);
    z-index: 20;
}

.logo-header {
    width: 185px;
    height: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.telefono {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
}


/* ================= IDIOMA ================= */

.idioma {
    position: relative;
}

.idioma-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

.globo {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.2;
}

.flecha {
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
    margin: -4px 0 0 5px;
    transition: .3s;
}

.idioma.open .flecha {
    transform: rotate(225deg);
    margin-top: 4px;
}

.idioma-menu {
    position: absolute;
    top: 35px;
    right: 0;
    width: 120px;
    padding: 8px 0;
    background: #080808;
    border: 1px solid #333;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .3s;
}

.idioma.open .idioma-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.idioma-menu button {
    width: 100%;
    padding: 10px 15px;
    background: none;
    border: 0;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
}

.idioma-menu button:hover {
    background: #151515;
    color: #a9dce9;
}


/* ================= 3 RAYITAS ================= */

.menu-btn {
    width: 25px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    height: 1px;
    background: #fff;
    margin: 8px 0;
}


/* ================= MENU LATERAL ================= */

.menu-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 430px;
    height: 100vh;
    background: #070707;
    z-index: 100;
    padding: 85px 55px 40px;
    border-left: 1px solid #292929;
    transition: right .45s ease;
    overflow-y: auto;
}

.menu-panel.active {
    right: 0;
}

.cerrar {
    position: absolute;
    top: 25px;
    right: 35px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 35px;
    font-weight: 200;
    cursor: pointer;
}

.menu-titulo {
    color: #888;
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 35px;
}

.menu-links a {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    text-decoration: none;
    margin: 19px 0;
    transition: .3s;
}

.menu-links small {
    width: 22px;
    color: #666;
    font-size: 10px;
}

.menu-links span {
    font-size: 12px;
    letter-spacing: 1.5px;
}

.menu-links a:hover {
    color: #a9dce9;
    transform: translateX(5px);
}

.menu-cita {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 23px;
    border: 1px solid #666;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    transition: .3s;
}

.menu-cita:hover {
    background: #fff;
    color: #000;
}

.menu-fondo {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.menu-fondo.active {
    opacity: 1;
    visibility: visible;
}


/* ================= TEXTO ================= */

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.texto {
    position: absolute;
    left: 7%;
    top: 38%;
}

.texto > span {
    display: block;
    color: #ddd;
    font-size: 13px;
    letter-spacing: 5px;
    margin-bottom: 35px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(55px, 5.2vw, 88px);
    font-weight: 400;
    line-height: .95;
}

.texto i {
    display: block;
    width: 70px;
    height: 1px;
    background: #fff;
    margin: 35px 0;
}

.texto p {
    color: #aaa;
    font-size: 15px;
    margin-bottom: 38px;
}


/* ================= BOTÓN ================= */

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 17px 28px;
    border: 1px solid #777;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: .3s;
}

.btn-hero b {
    font-size: 18px;
    font-weight: 300;
}

.btn-hero:hover {
    background: #fff;
    color: #000;
}


/* ================= DOCTOR ================= */

.doctor {
    position: absolute;
    left: 60%;
    bottom: 0;
    transform: translateX(-50%);
    height: 85%;
    z-index: 4;
}

.doctor img {
    height: 100%;
    width: auto;
    display: block;
}


/* ================= FIRMA ================= */

.firma {
    position: absolute;
    right: 7%;
    bottom: 7%;
    z-index: 6;
}

.firma img {
    width: 150px;
    height: auto;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    header {
        height: 105px;
        padding: 0 5%;
    }

    .logo-header {
        width: 160px;
    }

    .telefono {
        display: none;
    }

    .texto {
        left: 5%;
        top: 32%;
    }

    h1 {
        font-size: 52px;
    }

    .doctor {
        left: 62%;
        height: 70%;
    }
}

@media (max-width: 600px) {

    .hero {
        min-height: 750px;
    }

    header {
        padding: 0 5%;
    }

    .logo-header {
        width: 145px;
    }

    .header-right {
        gap: 18px;
    }

    .texto {
        left: 6%;
        top: 25%;
    }

    .texto > span {
        font-size: 9px;
        letter-spacing: 3px;
    }

    h1 {
        font-size: 43px;
    }

    .doctor {
        height: 58%;
        left: 67%;
        opacity: .9;
    }

    .firma {
        right: 5%;
        bottom: 5%;
    }

    .firma img {
        width: 105px;
    }

    .menu-panel {
        width: 100%;
        right: -100%;
        padding: 80px 35px 30px;
    }

    .menu-links a {
        margin: 17px 0;
    }

    .menu-links span {
        font-size: 11px;
    }
}

/* =====================================================
   SECCIÓN: SOBRE MÍ
===================================================== */

.sobre-mi {
    width: 100%;
    min-height: 100vh;
    display: flex;
    gap: 4%;
    padding: 25px 7.5%;
    background: #000;
    color: #fff;
    overflow: hidden;
}


/* IMAGEN */

.sobre-mi-imagen {
    width: 30%;
    flex-shrink: 0;
}

.sobre-mi-imagen img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}


/* CONTENIDO */

.sobre-mi-contenido {
    flex: 1;
    padding: 5px 0;
}

.sobre-mi-titulo {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 6px;
}

.sobre-mi-titulo i {
    width: 95px;
    height: 1px;
    background: #777;
}


/* TITULO PRINCIPAL */

.sobre-mi-contenido h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(45px, 4.1vw, 70px);
    line-height: 1;
    font-weight: 400;
    margin: 25px 0;
}

.sobre-mi-contenido h2 em {
    color: #d0d0d0;
}


/* TEXTO */

.sobre-mi-contenido > p {
    max-width: 1000px;
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}


/* ENFOQUE */

.enfoque {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.enfoque-linea {
    width: 7px;
    height: 58px;
    background: #fff;
}

.enfoque div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.enfoque small {
    font-size: 10px;
    letter-spacing: 5px;
}

.enfoque strong {
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 6px;
}

.enfoque > em {
    margin-left: auto;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #ccc;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .sobre-mi {
        padding: 40px 5%;
        gap: 30px;
    }

    .sobre-mi-imagen {
        width: 35%;
    }

    .sobre-mi-imagen img {
        min-height: 600px;
    }

    .sobre-mi-contenido h2 {
        font-size: 42px;
    }

    .sobre-mi-contenido > p {
        font-size: 14px;
    }

    .enfoque > em {
        display: none;
    }
}


@media (max-width: 600px) {

    .sobre-mi {
        display: block;
        padding: 30px 6%;
    }

    .sobre-mi-imagen {
        width: 100%;
        height: 430px;
        margin-bottom: 35px;
    }

    .sobre-mi-imagen img {
        min-height: 0;
        height: 100%;
        border-radius: 22px;
    }

    .sobre-mi-titulo {
        font-size: 10px;
        letter-spacing: 4px;
    }

    .sobre-mi-contenido h2 {
        font-size: 38px;
        margin: 20px 0;
    }

    .sobre-mi-contenido > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .enfoque {
        margin-top: 30px;
    }

    .enfoque strong {
        font-size: 17px;
        letter-spacing: 4px;
    }
}

/* =====================================================
   SECCIÓN: MI TRAYECTORIA
===================================================== */

.trayectoria {
    width: 100%;
    height: 56vh;
    min-height: 480px;
    background: #000;
    color: #fff;
    padding: 25px 4%;
    overflow: hidden;
}


/* TÍTULO */

.trayectoria-titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 25px;
}

.trayectoria-titulo::before,
.trayectoria-titulo::after {
    content: "";
    width: 170px;
    height: 1px;
    background: #777;
}

.trayectoria-titulo span {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    letter-spacing: 5px;
}


/* TARJETAS */

.trayectoria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    height: calc(100% - 80px);
}

.trayectoria-card {
    border: 1px solid #3d3d3d;
    border-radius: 18px;
    padding: 28px 35px 20px;
    min-width: 0;
    overflow: hidden;
}


/* ENCABEZADO TARJETA */

.card-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 20px;
}

.icono {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border: 1px solid #aaa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icono svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: white;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-header h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 5px;
}

.card-header i {
    display: block;
    width: 64px;
    height: 1px;
    background: #999;
    margin-top: 14px;
}


/* SCROLL */

.card-scroll {
    height: calc(100% - 90px);
    overflow-y: auto;
    padding-right: 12px;
}

.card-scroll::-webkit-scrollbar {
    width: 3px;
}

.card-scroll::-webkit-scrollbar-track {
    background: #202020;
}

.card-scroll::-webkit-scrollbar-thumb {
    background: #aaa;
}


/* DATOS */

.dato {
    padding: 5px 0 18px 20px;
    margin-bottom: 14px;
    border-left: 1px solid #aaa;
    position: relative;
}

.dato::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #000;
    left: -6px;
    top: 15px;
}

.dato b {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.dato span {
    display: block;
    color: #aaa;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 3px;
}


/* LOGROS */

.logro {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid #292929;
}

.mini-icono {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border: 1px solid #aaa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.logro span {
    font-size: 14px;
    line-height: 1.5;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .trayectoria {
        height: auto;
        padding: 35px 5%;
    }

    .trayectoria-titulo span {
        font-size: 30px;
    }

    .trayectoria-titulo::before,
    .trayectoria-titulo::after {
        width: 80px;
    }

    .trayectoria-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .trayectoria-card {
        height: 400px;
    }
}


@media (max-width: 600px) {

    .trayectoria-titulo {
        gap: 15px;
    }

    .trayectoria-titulo span {
        font-size: 23px;
        letter-spacing: 3px;
    }

    .trayectoria-titulo::before,
    .trayectoria-titulo::after {
        width: 35px;
    }

    .trayectoria-card {
        padding: 22px;
        height: 380px;
    }

    .icono {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .card-header h3 {
        font-size: 12px;
        letter-spacing: 3px;
    }
}

/* =====================================================
   CERTIFICACIONES Y ESPECIALIZACIÓN
===================================================== */

.certificaciones-section {
    width: 100%;
    background: #000;
    color: #fff;
    overflow: hidden;

    /* MÁS ESPACIO DESDE LA SECCIÓN ANTERIOR */
    padding: 50px 0 40px;
}


/* ================= SEPARADOR ================= */

.cert-separador {
    width: 100%;
    height: 1px;
    background: #fff;
    opacity: .65;

    margin-bottom: 28px;
}


.cert-container {
    width: 100%;
    padding: 0 6%;
}


/* ================= ENCABEZADO ================= */

.cert-header {
    text-align: center;
}

.cert-kicker {
    display: block;
    color: #b9e2eb;
    font-size: 10px;
    letter-spacing: 4px;
}

.cert-line {
    display: block;
    width: 58px;
    height: 1px;
    background: #fff;
    margin: 13px auto;
}

.cert-header h2 {
    margin: 0;

    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1;
}

.cert-header p {
    max-width: 750px;

    margin: 13px auto 0;

    color: #ccc;
    font-size: 13px;
    line-height: 1.55;
}


/* ================= CARRUSEL ================= */

.cert-carousel {
    position: relative;
    width: 100%;
    margin-top: 27px;
    padding: 25px 0;
}

.cert-track-wrapper {
    width: 100%;
    overflow: visible;
    position: relative;
}

.cert-track {
    display: flex;
    align-items: center;

    gap: 28px;

    width: max-content;

    transition: transform .45s ease;
}


/* ================= CERTIFICADOS ================= */

.cert-card {
    width: 245px;
    height: 350px;

    flex: 0 0 245px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px;

    border: 1px solid #292929;
    border-radius: 12px;

    opacity: .42;

    transform: scale(.88);

    transition:
        transform .4s ease,
        opacity .4s ease,
        border-color .4s ease;

    cursor: pointer;
}

.cert-card.active {
    opacity: 1;
    transform: scale(1.18);
    border-color: #666;
    z-index: 5;
}


/* IMAGEN SIN DEFORMAR */

.cert-card img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 5px;
}


/* ================= FLECHAS ================= */

.cert-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 10;

    width: 42px;
    height: 42px;

    border: 1px solid #777;
    border-radius: 50%;

    background: rgba(0, 0, 0, .85);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.cert-arrow:hover {
    background: #fff;
}

.cert-arrow svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: #fff;
    stroke-width: 1.3;
}

.cert-arrow:hover svg {
    stroke: #000;
}

.cert-prev {
    left: 12px;
}

.cert-next {
    right: 12px;
}


/* ================= PUNTOS ================= */

.cert-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    margin: 16px 0 28px;
}

.cert-dot {
    width: 7px;
    height: 7px;

    background: #555;
    border-radius: 50%;

    cursor: pointer;

    transition: .3s;
}

.cert-dot.active {
    background: #fff;
    transform: scale(1.3);
}


/* =====================================================
   PROCEDIMIENTOS DESTACADOS
===================================================== */

.procedimientos-box {
    width: 90%;
    margin: 0 auto;

    min-height: 165px;
    border: 1px solid #333;
    border-radius: 18px;

    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    align-items: center;

    padding: 20px 40px;
    gap: 0;
}


/* ================= INTRO ================= */

.procedimientos-title {

    display: flex;

    align-items: center;

    gap: 20px;

    min-width: 0;

    padding-right: 30px;

    border-right: 1px solid #333;
}

.face-icon {
    width: 55px;
    min-width: 55px;
}

.face-icon svg {
    width: 48px;
    height: 62px;

    fill: none;

    stroke: #fff;

    stroke-width: 1.2;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.procedure-kicker {
    font-size: 13px;
    letter-spacing: 3px;
    white-space: nowrap;
}

.procedimientos-title p {
    margin-top: 8px;

    color: #aaa;

    font-size: 12px;

    line-height: 1.5;
}


/* ================= COLUMNAS ================= */

.enfermedad-column {

    min-width: 0;

    height: auto;

    padding: 0 25px;

    border-right: 1px solid #333;
}

.enfermedad-column:last-child {
    border-right: 0;
}


/* ELEMENTOS */

.enfermedad-item {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #ddd;

    font-size: 12px;

    line-height: 1.4;

    margin: 8px 0;
}

.enfermedad-item span {

    width: 4px;
    height: 4px;

    min-width: 4px;

    border-radius: 50%;

    background: #fff;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .cert-container {
        padding: 0 4%;
    }

    .cert-header h2 {
        font-size: 38px;
    }

    .cert-card {
        width: 220px;
        flex-basis: 220px;
        height: 320px;
    }

    /*
       En pantallas medianas todavía mantenemos
       las 4 columnas mientras haya espacio.
    */

    .procedimientos-box {
        padding: 20px 25px;
    }

    .enfermedad-column {
        padding: 0 15px;
    }

    .procedure-kicker {
        font-size: 11px;
        letter-spacing: 2px;
    }
}


@media (max-width: 800px) {

    .procedimientos-box {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .procedimientos-title {
        grid-column: 1 / -1;

        border-right: 0;

        border-bottom: 1px solid #333;

        padding: 0 0 18px;
    }

    .enfermedad-column {
        border-right: 1px solid #333;
    }

    .enfermedad-column:nth-child(3) {
        border-right: 0;
    }
}


@media (max-width: 600px) {

    .certificaciones-section {
        padding-top: 35px;
    }

    .cert-header h2 {
        font-size: 29px;
    }

    .cert-header p {
        font-size: 12px;
    }

    .cert-track {
        gap: 18px;
    }

    .cert-card {
        width: 190px;
        flex-basis: 190px;
        height: 280px;
    }

    .cert-arrow {
        width: 35px;
        height: 35px;
    }


    .procedimientos-box {
        grid-template-columns: 1fr;

        padding: 20px;
    }

    .procedimientos-title {
        grid-column: auto;
    }

    .enfermedad-column {
        border-right: 0;

        border-bottom: 1px solid #333;

        padding: 8px 0;
    }

    .enfermedad-column:last-child {
        border-bottom: 0;
    }

}

/* =====================================================
   PREMIOS Y DISTINCIONES
===================================================== */

.premios-section {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 35px 0 40px;
    overflow: hidden;
}


.premios-container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
}


/* ================= ENCABEZADO ================= */

.premios-header {
    margin-bottom: 24px;
    text-align: center;
}

.premios-kicker {
    display: block;

    color: #fff;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 4px;
}


.premios-line {
    display: block;
    width: 65px;
    height: 1px;
    background: #fff;
    margin: 14px auto 18px;
}


.premios-header h2 {
    margin: 0;

    font-family: 'Playfair Display', serif;

    font-size: 40px;
    font-weight: 400;

    line-height: 1.1;
}


/* ================= TARJETAS ================= */

.premios-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


/* ================= TARJETA ================= */

.premio-card {
    min-height: 285px;

    padding: 28px 25px;

    border: 1px solid #363636;
    border-radius: 12px;

    background: #050505;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    transition:
        border-color .3s ease,
        transform .3s ease;
}


.premio-card:hover {
    border-color: #777;
    transform: translateY(-3px);
}


/* ================= ICONOS ================= */

.premio-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
}


.premio-icon svg {
    width: 58px;
    height: 58px;

    fill: none;

    stroke: #fff;
    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ================= LÍNEA ================= */

.premio-linea {
    width: 36px;
    height: 1px;

    background: #fff;

    margin-bottom: 18px;
}


/* ================= TÍTULO ================= */

.premio-card h3 {
    margin: 0 0 12px;

    font-family: 'Playfair Display', serif;

    font-size: 21px;
    font-weight: 400;

    line-height: 1.25;
}


/* ================= DESCRIPCIÓN ================= */

.premio-card p {
    max-width: 300px;

    margin: 0 auto;

    color: #ccc;

    font-size: 13px;
    line-height: 1.6;
}


/* ================= AÑO ================= */

.premio-year {
    margin-top: auto;
    padding-top: 20px;

    color: #ddd;

    font-size: 11px;

    letter-spacing: 5px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .premios-grid {
        grid-template-columns: 1fr;
    }

    .premio-card {
        min-height: 250px;
    }

}


@media (max-width: 600px) {

    .premios-section {
        padding: 28px 0 30px;
    }

    .premios-container {
        width: 92%;
    }

    .premios-header h2 {
        font-size: 32px;
    }

    .premios-card {
        padding: 25px 20px;
    }

}

/* =====================================================
   PROCEDIMIENTOS
===================================================== */

.procedimientos-section {
    width: 100%;
    background: #050505;
    color: #fff;
    padding: 38px 0 45px;
    overflow: hidden;
}


/* ================= SEPARADOR DIFUMINADO ================= */

.procedimientos-separador {
    width: 100%;
    height: 1px;
    margin-bottom: 32px;

    background: linear-gradient(
        90deg,
        transparent,
        #777,
        #fff,
        #777,
        transparent
    );

    opacity: .55;
}


/* ================= CONTENEDOR ================= */

.procedimientos-container {
    width: 91%;
    margin: auto;
    padding-top: 35px;

    display: grid;
    grid-template-columns: 31% 69%;

    min-height: 650px;
}


/* =====================================================
   INFORMACIÓN
===================================================== */

.procedimientos-info {
    padding: 0 40px 0 4px;
}


.procedimientos-kicker {
    display: block;
    padding-top: 35px;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
}


.procedimientos-linea {
    display: block;

    width: 90px;
    height: 2px;

    background: #fff;

    margin: 25px 0 58px;
}


.procedimientos-info h2 {
    margin: 0;

    font-family: 'Playfair Display', serif;

    font-size: 48px;
    font-weight: 400;

    line-height: 1.05;
    transform: translateY(-35px);

}


.procedimientos-info > p {
    margin: 10px 0 40px;

    max-width: 430px;

    color: #bbb;

    font-size: 14px;
    line-height: 2;
}


/* =====================================================
   LISTA
===================================================== */

.procedimientos-lista {
    width: 100%;
}


.procedimiento-item {
    min-height: 75px;

    display: grid;

    grid-template-columns: 45px 1fr 20px;

    align-items: center;

    gap: 15px;

    border-bottom: 1px solid #292929;

    cursor: pointer;
}


.procedimiento-item:hover {
    border-color: #777;
}


.procedimiento-icono {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.procedimiento-icono svg {
    width: 30px;
    height: 30px;

    fill: none;

    stroke: #fff;
    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.procedimiento-texto strong {
    display: block;

    font-size: 16px;
    letter-spacing: .5px;
}


.procedimiento-texto p {
    margin: 7px 0 0;

    color: #aaa;

    font-size: 12px;
    line-height: 1.45;
}


.procedimiento-flecha {
    font-size: 30px;
    font-weight: 300;

    transition: transform .3s ease;
}


.procedimiento-item:hover .procedimiento-flecha {
    transform: translateX(5px);
}


/* =====================================================
   GALERÍA
===================================================== */

.procedimientos-galeria {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    height: 800px;

    overflow: hidden;
}


/* ================= IMÁGENES ================= */

.procedimiento-imagen {

    position: relative;

    height: 800px;

    overflow: hidden;

    background: #111;

    cursor: pointer;
}


.procedimiento-imagen img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s ease,
        filter .5s ease;
}


.procedimiento-imagen:hover img {
    transform: scale(1.04);
}


/* ================= OSCURECIMIENTO ================= */

.imagen-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to bottom,
        transparent 55%,
        rgba(0,0,0,.9) 100%
    );
}


/* ================= NOMBRE ================= */

.procedimiento-imagen > span {

    position: absolute;

    bottom: 32px;
    left: 0;

    width: 100%;

    text-align: center;

    color: #fff;

    font-size: 12px;

    letter-spacing: 3px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .procedimientos-container {
        grid-template-columns: 35% 65%;
    }

    .procedimientos-info {
        padding-right: 25px;
    }

    .procedimientos-info h2 {
        font-size: 40px;
    }

    .procedimientos-galeria,
    .procedimiento-imagen {
        height: 580px;
    }

}


@media (max-width: 800px) {

    .procedimientos-container {
        width: 92%;

        grid-template-columns: 1fr;
    }

    .procedimientos-info {
        padding: 0;
        margin-bottom: 30px;
    }

    .procedimientos-info h2 {
        font-size: 38px;
    }

    .procedimientos-galeria {

        grid-template-columns:
            repeat(5, 180px);

        height: 430px;

        overflow-x: auto;
        overflow-y: hidden;
    }

    .procedimiento-imagen {
        width: 180px;
        height: 430px;
    }

}


@media (max-width: 600px) {

    .procedimientos-section {
        padding-top: 30px;
    }

    .procedimientos-info h2 {
        font-size: 34px;
    }

    .procedimientos-info > p {
        margin: 30px 0;
        line-height: 1.7;
    }

    .procedimiento-texto strong {
        font-size: 14px;
    }

    .procedimiento-texto p {
        font-size: 11px;
    }

}

/* =====================================================
   ANTES & DESPUÉS
===================================================== */

.antes-despues-section {
    width: 100%;
    background: #050505;
    color: #fff;

    padding: 35px 0 75px;
}


.antes-despues-container {
    width: 88%;
    max-width: 1400px;
    margin: auto;
}


/* ================= ENCABEZADO ================= */

.antes-despues-header {
    text-align: center;
    margin-bottom: 22px;
}


.antes-kicker {
    display: block;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 5px;
}


.antes-despues-header h2 {
    margin: 14px 0 14px;

    font-family: 'Playfair Display', serif;

    font-size: 48px;
    font-weight: 400;

    line-height: 1.1;
}


.antes-linea {
    display: block;

    width: 90px;
    height: 1px;

    background: #fff;

    margin: auto;
}


/* ================= TARJETAS ================= */

.antes-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.antes-card {
    border: 1px solid #292929;
    border-radius: 13px;

    background: #070707;

    padding: 17px 20px 24px;

    text-align: center;

    transition:
        transform .3s ease,
        border-color .3s ease;
}


.antes-card:hover {
    transform: translateY(-3px);
    border-color: #666;
}


/* ================= IMAGEN ================= */

.antes-imagen {
    width: 100%;
    height: 300px;

    overflow: hidden;

    border-radius: 9px;
}


.antes-imagen img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}


.antes-card:hover .antes-imagen img {
    transform: scale(1.03);
}


/* ================= ICONO ================= */

.antes-icono {
    height: 58px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 10px;
}


.antes-icono svg {
    width: 55px;
    height: 55px;

    fill: none;

    stroke: #fff;
    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ================= NOMBRE ================= */

.antes-card h3 {
    margin: 5px 0 18px;

    font-family: 'Playfair Display', serif;

    font-size: 23px;
    font-weight: 400;

    letter-spacing: 1px;
}


/* ================= BOTÓN ================= */

.antes-btn {
    display: flex;

    width: 85%;
    height: 48px;

    margin: auto;

    align-items: center;
    justify-content: center;

    border: 1px solid #777;
    border-radius: 30px;

    color: #fff;

    text-decoration: none;

    font-size: 11px;
    letter-spacing: 3px;

    transition:
        background .3s ease,
        border-color .3s ease;
}


.antes-btn:hover {
    background: #151515;
    border-color: #fff;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .antes-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: auto;
    }

    .antes-despues-header h2 {
        font-size: 40px;
    }

}


@media (max-width: 600px) {

    .antes-despues-section {
        padding: 50px 0;
    }

    .antes-despues-container {
        width: 92%;
    }

    .antes-despues-header h2 {
        font-size: 34px;
    }

    .antes-imagen {
        height: 270px;
    }

}

/* =========================================
   AGENDA TU CONSULTA
========================================= */

.agenda-consulta {
    position: relative;

    width: 100%;

    height: 620px;

    overflow: hidden;

    background: #050505;

    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;
}


/* =========================================
   IMAGEN
========================================= */

.agenda-fondo {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    z-index: 0;
}


/* =========================================
   DEGRADADO
========================================= */

.agenda-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.98) 0%,
            rgba(0,0,0,.96) 22%,
            rgba(0,0,0,.88) 40%,
            rgba(0,0,0,.45) 58%,
            rgba(0,0,0,.08) 78%,
            rgba(0,0,0,.02) 100%
        );
}


/* =========================================
   CONTENIDO
========================================= */

.agenda-contenido {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1500px;

    margin: 0 auto;

    padding: 0 5%;
}


/* =========================================
   ETIQUETA
========================================= */

.agenda-etiqueta {
    display: block;

    color: #fff;

    font-family: 'Montserrat', sans-serif;

    font-size: 12px;

    font-weight: 400;

    letter-spacing: 5px;

    margin-bottom: 20px;
}


/* =========================================
   LÍNEA
========================================= */

.agenda-linea {
    width: 85px;

    height: 2px;

    background: #fff;

    margin-bottom: 35px;
}


/* =========================================
   TÍTULO
========================================= */

.agenda-contenido h2 {
    margin: 0 0 24px;

    font-family: 'Playfair Display', serif;

    font-size: clamp(42px, 4.5vw, 67px);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -1px;

    color: #fff;
}

.agenda-contenido h2 span {
    display: block;
}


/* =========================================
   NOMBRE DEL DOCTOR
========================================= */

.agenda-contenido h2 span:last-child {
    color: #fff;
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.agenda-contenido p {
    max-width: 560px;

    margin: 0 0 28px;

    color: #ddd;

    font-family: 'Montserrat', sans-serif;

    font-size: 16px;

    font-weight: 300;

    line-height: 1.6;
}


/* =========================================
   BOTONES
========================================= */

.agenda-botones {
    display: flex;

    align-items: center;

    gap: 18px;
}


/* =========================================
   BOTÓN
========================================= */

.agenda-btn {
    width: 350px;

    height: 68px;

    padding: 0 22px;

    display: flex;

    align-items: center;

    gap: 14px;

    border-radius: 15px;

    text-decoration: none;

    font-family: 'Montserrat', sans-serif;

    font-size: 14px;

    font-weight: 400;

    transition: .3s ease;
}

.agenda-btn strong {
    margin-left: auto;

    font-size: 25px;

    font-weight: 300;
}


/* =========================================
   DOCTORALIA
========================================= */

.agenda-doctoralia {
    color: #fff;

    border: 1px solid #fff;

    background: transparent;
}

.agenda-doctoralia:hover {
    background: #fff;

    color: #000;
}

.agenda-doctoralia svg {
    width: 32px;
    height: 32px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;
}


/* =========================================
   WHATSAPP
========================================= */

.agenda-whatsapp {
    color: #000;

    background: #fff;

    border: 1px solid #fff;
}

.agenda-whatsapp:hover {
    background: #e7e7e7;
}

.agenda-whatsapp svg {
    width: 31px;
    height: 31px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .agenda-consulta {
        height: 570px;
    }

    .agenda-contenido {
        padding: 0 6%;
    }

    .agenda-contenido h2 {
        font-size: 50px;
    }

    .agenda-btn {
        width: 300px;
    }
}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 700px) {

    .agenda-consulta {
        height: auto;

        min-height: 700px;

        align-items: flex-end;
    }

    .agenda-fondo {
        object-position: 65% center;
    }

    .agenda-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.12) 0%,
                rgba(0,0,0,.35) 28%,
                rgba(0,0,0,.88) 65%,
                rgba(0,0,0,.98) 100%
            );
    }

    .agenda-contenido {
        padding: 100px 25px 45px;
    }

    .agenda-etiqueta {
        font-size: 9px;

        letter-spacing: 3px;

        margin-bottom: 16px;
    }

    .agenda-linea {
        width: 60px;

        height: 1px;

        margin-bottom: 27px;
    }

    .agenda-contenido h2 {
        font-size: 39px;

        line-height: 1.04;

        margin-bottom: 20px;
    }

    .agenda-contenido p {
        font-size: 14px;

        line-height: 1.6;

        margin-bottom: 25px;
    }

    .agenda-botones {
        flex-direction: column;

        width: 100%;

        gap: 10px;
    }

    .agenda-btn {
        width: 100%;

        height: 58px;

        border-radius: 13px;

        font-size: 12px;
    }

    .agenda-btn svg {
        width: 26px;
        height: 26px;
    }

}


/* =========================================
   MÓVIL PEQUEÑO
========================================= */

@media (max-width: 450px) {

    .agenda-consulta {
        min-height: 650px;
    }

    .agenda-contenido {
        padding: 80px 20px 35px;
    }

    .agenda-contenido h2 {
        font-size: 33px;
    }

    .agenda-contenido p {
        font-size: 13px;
    }

}

/* =========================================
   PODCAST & PLÁTICAS
========================================= */

.podcast-section {
    width: 100%;
    background: #050505;
    color: #fff;

    /* POCO ESPACIO ENTRE SECCIONES */
    padding: 45px 2.5% 35px;

    overflow: hidden;
}


/* =========================================
   CONTENEDOR
========================================= */

.podcast-contenedor {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================
   PARTE SUPERIOR
========================================= */

.podcast-superior {
    width: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 42px;
}


/* =========================================
   TÍTULOS
========================================= */

.podcast-titulos {
    margin-left: 2%;
}

.podcast-etiqueta {
    display: block;

    color: #fff;

    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;

    letter-spacing: 4px;

    margin-bottom: 20px;
}


/* =========================================
   LÍNEA
========================================= */

.podcast-linea {
    width: 65px;
    height: 2px;

    background: #fff;

    margin-bottom: 25px;
}


/* =========================================
   TÍTULO PRINCIPAL
========================================= */

.podcast-titulos h2 {
    margin: 0 0 18px;

    font-family: 'Playfair Display', serif;

    font-size: clamp(55px, 5.2vw, 80px);

    font-weight: 400;

    line-height: .94;

    letter-spacing: -1px;
}

.podcast-titulos h2 span {
    display: block;
    color: #fff;
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.podcast-titulos p {
    margin: 0;

    color: #ddd;

    font-family: 'Montserrat', sans-serif;

    font-size: 17px;
    font-weight: 300;

    line-height: 1.65;
}


/* =========================================
   BOTÓN YOUTUBE
========================================= */

.youtube-canal {
    width: 335px;
    height: 58px;

    margin-top: 105px;
    margin-right: 2%;

    display: flex;
    align-items: center;

    padding: 0 20px;

    gap: 15px;

    border: 1px solid #555;
    border-radius: 30px;

    color: #fff;
    text-decoration: none;

    font-family: 'Montserrat', sans-serif;

    font-size: 14px;
    font-weight: 400;

    transition: .3s ease;
}

.youtube-canal:hover {
    border-color: #fff;
    background: #111;
}

.youtube-canal svg {
    width: 27px;
    height: 27px;

    fill: none;
    stroke: #fff;
    stroke-width: 1.5;

    flex-shrink: 0;
}

.youtube-canal svg polygon {
    fill: #fff;
    stroke: none;
}

.youtube-flecha {
    margin-left: auto;

    font-size: 26px;
    font-weight: 300;
}


/* =========================================
   SLIDER
========================================= */

.podcast-slider {
    width: 100%;

    display: flex;

    overflow: hidden;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}

.podcast-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================
   CADA GRUPO
========================================= */

.podcast-slide {
    min-width: 100%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    scroll-snap-align: start;
}


/* =========================================
   TARJETA
========================================= */

.podcast-card {
    min-width: 0;

    display: block;

    color: #fff;
    text-decoration: none;

    background: #080808;

    border: 1px solid #444;

    border-radius: 15px;

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.podcast-card:hover {
    transform: translateY(-4px);
    border-color: #888;
}


/* =========================================
   IMAGEN
========================================= */

.podcast-imagen {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #111;
}

.podcast-imagen img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .5s ease;
}

.podcast-card:hover .podcast-imagen img {
    transform: scale(1.04);
}


/* =========================================
   OSCURECIMIENTO
========================================= */

.podcast-imagen::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        transparent 45%,
        rgba(0,0,0,.35) 100%
    );

    pointer-events: none;
}


/* =========================================
   EPISODIO
========================================= */

.episodio {
    position: absolute;

    z-index: 2;

    top: 17px;
    right: 15px;

    color: #fff;

    font-family: 'Montserrat', sans-serif;

    font-size: 12px;
    font-weight: 400;

    letter-spacing: 1.5px;

    text-shadow: 0 2px 8px #000;
}


/* =========================================
   PLAY
========================================= */

.play {
    position: absolute;

    z-index: 3;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 65px;
    height: 65px;

    border: 1px solid #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background: rgba(0,0,0,.25);

    font-size: 20px;

    padding-left: 4px;

    transition: .3s ease;
}

.podcast-card:hover .play {
    background: rgba(255,255,255,.12);

    transform:
        translate(-50%, -50%)
        scale(1.08);
}


/* =========================================
   DURACIÓN
========================================= */

.duracion {
    position: absolute;

    z-index: 3;

    right: 12px;
    bottom: 12px;

    padding: 5px 8px;

    border-radius: 6px;

    border: 1px solid #fff;

    background: rgba(0,0,0,.7);

    color: #fff;

    font-size: 10px;

    letter-spacing: .5px;
}


/* =========================================
   INFORMACIÓN
========================================= */

.podcast-info {
    min-height: 154px;

    padding: 18px 20px 18px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.podcast-info h3 {
    margin: 0;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 21px;
    font-weight: 400;

    line-height: 1.15;
}


/* =========================================
   MINI LÍNEA
========================================= */

.mini-linea {
    width: 50px;
    height: 2px;

    background: #fff;

    margin-top: 25px;
    margin-bottom: 13px;
}


/* =========================================
   VER VIDEO
========================================= */

.ver-video {
    color: #fff;

    font-family: 'Montserrat', sans-serif;

    font-size: 10px;
    font-weight: 400;

    letter-spacing: 3px;
}


/* =========================================
   ESPACIO VACÍO DEL ÚLTIMO SLIDE
========================================= */

.podcast-vacio {
    visibility: hidden;
}


/* =========================================
   PUNTITOS
========================================= */

.podcast-dots {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 12px;

    margin-top: 38px;
}

.podcast-dot {
    width: 13px;
    height: 13px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #444;

    cursor: pointer;

    transition: .3s ease;
}

.podcast-dot:hover {
    background: #888;
}

.podcast-dot.activo {
    background: #fff;

    transform: scale(1.15);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .podcast-section {
        padding: 40px 3% 30px;
    }

    .podcast-superior {
        margin-bottom: 35px;
    }

    .podcast-titulos h2 {
        font-size: 58px;
    }

    .podcast-titulos p {
        font-size: 15px;
    }

    .youtube-canal {
        width: 290px;
        margin-top: 85px;
    }

    .podcast-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .podcast-info {
        min-height: 145px;
    }

}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 700px) {

    .podcast-section {
        padding: 35px 18px 30px;
    }

    .podcast-superior {
        flex-direction: column;

        margin-bottom: 32px;
    }

    .podcast-titulos {
        margin-left: 0;
    }

    .podcast-etiqueta {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .podcast-linea {
        width: 50px;
        height: 1px;

        margin-bottom: 20px;
    }

    .podcast-titulos h2 {
        font-size: 45px;

        line-height: .98;
    }

    .podcast-titulos p {
        font-size: 13px;

        line-height: 1.65;

        margin-top: 18px;
    }

    .desktop {
        display: none;
    }

    .youtube-canal {
        width: 100%;
        max-width: 320px;

        height: 52px;

        margin-top: 25px;
        margin-right: 0;

        font-size: 12px;
    }

    .youtube-canal svg {
        width: 23px;
        height: 23px;
    }

    .podcast-slide {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .podcast-card {
        width: 100%;
    }

    .podcast-info {
        min-height: 140px;
    }

    .podcast-info h3 {
        font-size: 22px;
    }

    .podcast-dots {
        margin-top: 28px;
    }

}

/* =========================================
   OPINIONES
========================================= */

.opiniones-section {
    width: 100%;
    background: #050505;
    color: #fff;

    /* POCO ESPACIO ENTRE SECCIONES */
    padding: 45px 2.5% 40px;

    overflow: hidden;
}


/* =========================================
   ENCABEZADO
========================================= */

.opiniones-header {
    text-align: center;
    margin-bottom: 55px;
}

.opiniones-etiqueta {
    display: block;

    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;

    letter-spacing: 5px;

    color: #fff;

    margin-bottom: 14px;
}

.opiniones-linea {
    width: 82px;
    height: 1px;

    background: #aaa;

    margin: 0 auto 25px;
}


/* =========================================
   TÍTULO
========================================= */

.opiniones-header h2 {
    margin: 0 0 18px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 400;

    line-height: 1;
}


/* =========================================
   DESCRIPCIÓN
========================================= */

.opiniones-header > p {
    margin: 0;

    color: #aaa;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.7;
}


/* =========================================
   CALIFICACIÓN
========================================= */

.calificacion {
    margin-top: 38px;

    text-align: center;
}

.numero-calificacion {
    display: flex;

    align-items: baseline;
    justify-content: center;

    gap: 8px;
}

.numero-calificacion strong {
    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 48px;
    font-weight: 400;
}

.numero-calificacion span {
    color: #aaa;

    font-family: 'Playfair Display', serif;

    font-size: 27px;
}


/* =========================================
   ESTRELLAS
========================================= */

.estrellas {
    margin-top: 7px;

    color: #d5a32a;

    font-size: 21px;

    letter-spacing: 7px;
}


/* =========================================
   OPINIONES VERIFICADAS
========================================= */

.opiniones-verificadas {
    margin-top: 13px;

    color: #888;

    font-family: 'Montserrat', sans-serif;

    font-size: 10px;
}

.opiniones-verificadas strong {
    color: #fff;
}


/* =========================================
   GRID
========================================= */

.opiniones-grid {
    width: 100%;

    display: grid;

    /* 5 TARJETAS EN UNA LÍNEA */
    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================
   TARJETA
========================================= */

.opinion-card {
    position: relative;

    min-width: 0;

    display: flex;
    flex-direction: column;

    min-height: 430px;

    padding: 22px 18px 19px;

    background: #111;

    border: 1px solid #333;

    border-radius: 16px;

    color: #fff;

    text-decoration: none;

    transition:
        border-color .3s ease,
        transform .3s ease;
}

.opinion-card:hover {
    border-color: #777;

    transform: translateY(-3px);
}


/* =========================================
   COMILLA
========================================= */

.comilla {
    color: #fff;

    font-family: Georgia, serif;

    font-size: 29px;
    font-weight: bold;

    line-height: .6;

    margin-bottom: 22px;
}


/* =========================================
   NOMBRE
========================================= */

.opinion-card h3 {
    margin: 0 0 10px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 23px;
    font-weight: 400;

    line-height: 1.05;
}


/* =========================================
   ESTRELLAS DE TARJETA
========================================= */

.estrellas-card {
    color: #d5a32a;

    font-size: 14px;

    letter-spacing: 1px;

    margin-bottom: 18px;
}


/* =========================================
   DATOS
========================================= */

.datos-opinion {
    border-left: 1px solid #777;

    padding-left: 12px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-bottom: 22px;
}

.datos-opinion span {
    color: #888;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;
    font-weight: 300;

    line-height: 1.35;
}


/* =========================================
   TEXTO DE LA RESEÑA
========================================= */

.opinion-card > p {
    margin: 0;

    color: #ddd;

    font-family: 'Montserrat', sans-serif;

    font-size: 11px;
    font-weight: 300;

    line-height: 1.7;
}


/* =========================================
   VER RESEÑA
========================================= */

.ver-resena {
    margin-top: auto;

    padding-top: 22px;

    color: #fff;

    font-family: 'Montserrat', sans-serif;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2.5px;

    white-space: nowrap;
}

.opinion-card:hover .ver-resena {
    letter-spacing: 3px;
}


/* =========================================
   BLOQUE FINAL
========================================= */

.opinion-final {
    width: 100%;

    margin-top: 20px;

    min-height: 105px;

    padding: 20px 28px;

    display: flex;

    align-items: center;

    gap: 25px;

    background: #111;

    border: 1px solid #333;

    border-radius: 16px;
}


/* =========================================
   ICONO
========================================= */

.opinion-final-icon {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    border: 1px solid #666;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;
}


/* =========================================
   TEXTO FINAL
========================================= */

.opinion-final-text {
    flex: 1;
}

.opinion-final-text h3 {
    margin: 0 0 7px;

    color: #fff;

    font-family: 'Playfair Display', serif;

    font-size: 23px;
    font-weight: 400;
}

.opinion-final-text p {
    margin: 0;

    color: #999;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;
    font-weight: 300;

    line-height: 1.5;
}


/* =========================================
   BOTÓN DEJAR RESEÑA
========================================= */

.dejar-resena {
    width: 230px;
    height: 58px;

    flex-shrink: 0;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid #777;

    color: #fff;

    text-decoration: none;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2px;

    transition: .3s ease;
}

.dejar-resena:hover {
    background: #fff;
    color: #000;

    border-color: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1250px) {

    .opiniones-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

}


/* =========================================
   TABLET PEQUEÑA
========================================= */

@media (max-width: 1000px) {

    .opiniones-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .opinion-card {
        min-height: 420px;
    }

    .opinion-final {
        flex-wrap: wrap;
    }

    .opinion-final-text {
        min-width: 300px;
    }

}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 700px) {

    .opiniones-section {
        padding: 35px 18px 30px;
    }

    .opiniones-header {
        margin-bottom: 38px;
    }

    .opiniones-header h2 {
        font-size: 36px;
        line-height: 1.05;
    }

    .opiniones-header > p {
        font-size: 11px;
    }

    .calificacion {
        margin-top: 28px;
    }

    .numero-calificacion strong {
        font-size: 42px;
    }

    .numero-calificacion span {
        font-size: 23px;
    }

    .opiniones-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .opinion-card {
        min-height: 410px;

        padding: 18px 15px;
    }

    .opinion-card h3 {
        font-size: 20px;
    }

    .opinion-card > p {
        font-size: 10px;
    }

    .opinion-final {
        margin-top: 15px;

        padding: 20px;

        flex-direction: column;

        align-items: flex-start;
    }

    .opinion-final-text {
        min-width: 0;
    }

    .dejar-resena {
        width: 100%;
    }

}


/* =========================================
   MÓVIL PEQUEÑO
========================================= */

@media (max-width: 480px) {

    .opiniones-grid {
        grid-template-columns: 1fr;
    }

    .opinion-card {
        min-height: 380px;
    }

    .opiniones-header h2 {
        font-size: 32px;
    }

}

/* =========================
   CONTACTO
========================= */

.contacto-section {
    background: #050505;
    color: #fff;
    padding: 55px 4% 45px;
    font-family: 'Montserrat', sans-serif;
}


/* ENCABEZADO */

.contacto-header {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 70px;
}

.contacto-mini {
    font-size: 12px;
    letter-spacing: 6px;
    font-weight: 500;
}

.contacto-linea {
    width: 84px;
    height: 1px;
    background: #777;
    margin: 14px auto 30px;
}

.contacto-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 25px;
}

.contacto-header p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* =========================
   INFORMACIÓN
========================= */

.contacto-info {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 115px;
    padding: 10px 45px;
}

.contacto-item + .contacto-item {
    border-left: 1px solid #333;
}


/* ICONOS */

.contacto-icono {
    width: 78px;
    height: 78px;
    min-width: 78px;
    border: 1px solid #777;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto-icono svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* TEXTOS */

.contacto-texto {
    min-width: 0;
}

.contacto-label {
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    margin-bottom: 12px;
    color: #fff;
}

.contacto-texto a {
    color: #ddd;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

.contacto-texto a:hover {
    color: #fff;
}

.contacto-texto h3 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 10px;
}

.contacto-texto p {
    color: #888;
    font-size: 11px;
    line-height: 1.55;
    margin: 0;
}


/* =========================
   REDES
========================= */

.contacto-redes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    margin-top: 45px;
}

.contacto-redes > span {
    font-size: 11px;
    letter-spacing: 5px;
}

.redes-lista {
    display: flex;
    align-items: center;
    gap: 14px;
}

.red-social {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
}

.red-social:hover {
    transform: translateY(-4px);
}

.red-social img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}


/* =========================
   MAPA
   SIN ESPACIO NEGRO
========================= */

.contacto-mapa {
    width: 100%;
    height: 430px;
    margin: 0;
    padding: 0;
    line-height: 0;
    background: #000;
}

.contacto-mapa iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .contacto-item {
        padding: 10px 25px;
        gap: 18px;
    }

    .contacto-icono {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }

    .contacto-icono svg {
        width: 25px;
        height: 25px;
    }

}


@media (max-width: 850px) {

    .contacto-section {
        padding: 45px 6% 40px;
    }

    .contacto-header {
        margin-bottom: 45px;
    }

    .contacto-header h2 {
        font-size: 42px;
    }

    .contacto-info {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contacto-item {
        padding: 20px 0;
    }

    .contacto-item + .contacto-item {
        border-left: 0;
        border-top: 1px solid #333;
    }

    .contacto-redes {
        flex-direction: column;
        gap: 20px;
        margin-top: 35px;
    }

}


@media (max-width: 500px) {

    .contacto-header h2 {
        font-size: 34px;
    }

    .contacto-header p {
        font-size: 13px;
    }

    .contacto-icono {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .contacto-texto a {
        font-size: 15px;
    }

    .contacto-mapa {
        height: 350px;
    }

}