/* Hoja de estilo - Pesadilla americana */


/* Tipografía - Adobe Fonts */

@import url("https://use.typekit.net/bak1cpe.css");


/* Generales */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-family: ivyjournal, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}


/* Navbar */

.navbar {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 70px;

    background: #0062FF;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 50px;
    z-index: 1000;
}

.titulo-navbar {

    color: #f6f6f6;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {

    height: 45px;

}

.menu-toggle {

    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;

}

/* Menú hamburguesa */

.menu-toggle span {

    display: block;

    width: 35px;
    height: 4px;

    background: white;

    position: absolute;
    left: 0;

    transform-origin: center;
    transition: all .3s ease;

}

/* Línea superior */

.menu-toggle span:nth-child(1) {

    top: 8px;
}

/* Línea central */

.menu-toggle span:nth-child(2) {

    top: 18px;
}

/* Línea inferior */

.menu-toggle span:nth-child(3) {

    top: 28px;
}

.menu-toggle.activo span:nth-child(1) {

    transform: rotate(45deg);

    top: 18px;
}

.menu-toggle.activo span:nth-child(2) {

    opacity: 0;
}

.menu-toggle.activo span:nth-child(3) {

    transform: rotate(-45deg);

    top: 18px;
}


/* Overlay - Menú */

.overlay {

    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.688);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}

.overlay.activo {

    opacity: 1;
    visibility: visible;
}

/* Lateral - menú */

.menu-lateral {

    position: fixed;

    top: 0;
    right: -450px;

    width: 420px;
    height: 100vh;

    background: #121212ae;

    padding: 80px 60px;

    transition: .4s ease;

    z-index: 999;
}

.menu-lateral.activo {

    right: 0;
}

.menu-lateral ul {

    list-style: none;

    padding: 0;

}

.menu-lateral li {

    padding: 40px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .3);

}

.menu-lateral a {

    color: #f6f6f6;
    text-decoration: none;
    font-family: ivyjournal, sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.5;
}

.cerrar-menu {

    position: absolute;
    top: 30px;
    right: 30px;

    background: none;
    border: none;

    color: white;

    font-size: 4rem;

    cursor: pointer;
}

.cerrar-menu img {
    color: #f6f6f6;
}



/* Header */

.header-home {

    min-height: 100vh;
    background-image: url("../imagenes/foto-header.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    padding-top: 70px;
}

.header-contenido {

    width: 100%;
    max-width: 720px;
    text-align: center;
    padding-top: 200px;
}

.header-titulo-svg {

    width: min(460px, 82vw);
    height: auto;
    display: block;
    margin: 0 auto 90px;

}

.header-compartir {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 50px;

}

.header-compartir p {

    margin: 0;
    color: white;
    font-size: 1.35rem;
}

header-compartir a img {

    width: 28px;
    height: 28px;
    display: block;

}

.header-flecha img {

    width: 25px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 50px;

}

.enlace-copiado {

    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .9);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: .9rem;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 9999;

}

.enlace-copiado.activo {

    opacity: 1;
    visibility: visible;

}

.header-credito {

    position: absolute;
    right: 40px;
    bottom: 30px;

    color: #ffffff63;

    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1rem;
    font-weight: 300;

    z-index: 3;

}


/* Sección - Introducción */

.row {
    margin-right: 0;
    margin-left: 0;
}

.introduccion {

    background: #f6f6f6;

}

.intro-texto {

    display: flex;
    align-items: center;
    justify-content: center;

}

.intro-contenido {

    max-width: 560px;
    padding: 120px 40px;

}

.intro-icono {

    width: 80px;
    margin-bottom: 28px;

}

.intro-contenido h2 {

    font-family: ivyjournal, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #121212;
    margin-bottom: 18px;

}

.intro-linea {

    width: 80px;
    height: 3px;
    margin-bottom: 45px;

    background: linear-gradient(to right,
            #0066ff 0%,
            #0066ff 0%,
            #bdbdbd 45%,
            #f6f6f6 100%);

}

.intro-contenido p {
    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1.2rem;
    line-height: 1.45;
    color: #121212b4;
    margin-bottom: 28px;
}

.intro-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-imagen figure {
    position: relative;
    margin: 0;
    height: 100%;
}

.intro-imagen figcaption {

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    padding: 30px 120px;

    color: #f6f6f6a1;

    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1.2rem;

    line-height: 1.2;

    background: rgba(0, 0, 0, 0.437);

}


/* Sección - Notas */

.seccion-notas {

    background: #0062FF;
    padding: 120px 0;

}

.card-nota {

    display: block;
    height: 100%;
    background: #f6f6f6;
    color: #121212;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;

}

.card-nota:hover {

    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);

}

.card-nota-img {

    width: 100%;
    height: 240px !important;
    object-fit: cover;
    display: block;

}

.card-nota-contenido {

    min-height: 320px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.card-nota-contenido h3 {

    font-family: ivyjournal, sans-serif;
    font-size: 1.8rem !important;
    line-height: 1.2;
    margin: 0;

}

.card-nota-link {

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 2.3rem !important;
    font-weight: 700;

}

.card-nota-link img {

    width: 28px;

}

/* Notas - General */

.pagina-nota {
    background: #f6f6f6;
    padding-top: 100px;
}

.nota-articulo {
    max-width: 760px;
    margin: 0 auto;
}

.nota-figura-principal {
    position: relative;
    margin: 0 0 70px;
}

.nota-figura-principal img {
    width: 100%;
    display: block;
    padding-top: 40px;
}

.nota-figura-principal figcaption {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 28px 150px;

    background: #121212a9;
    color: #f6f6f6a7;

    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 400;
}

.nota-encabezado h1 {
    font-family: ivyjournal, sans-serif;
    font-size: 3.4rem;
    line-height: 1.2;
    color: #111;
    margin-bottom: 30px;
    font-weight: 700;
}

.nota-linea {
    width: 80px;
    height: 3px;
    margin: 50px 0;

    background: linear-gradient(to right,
            #0066ff 0%,
            #bdbdbd 40%,
            #bdbdbd 40%,
            #11111100 100%);
}

.nota-compartir {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 45px;
}

.nota-compartir p {
    margin: 0;
    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1.6rem;
    color: #6c6c6c;
}


.nota-compartir img {
    width: 26px;
    display: block;
}

.nota-creditos {
    max-width: 378px;
    color: #888;
    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 70px;
}

.nota-cuerpo p {
    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #111;
    margin-bottom: 28px;
}


/* Audio - Nota 01 */

.seccion-audio {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 100px;
    margin-bottom: 100px;
}

.audio-card {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.audio-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.audio-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .35);
}

.audio-controles {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;
    color: white;
    z-index: 2;
}

.audio-controles h2 {
    font-family: ivyjournal, sans-serif;
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.audio-botones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

.audio-botones button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.audio-botones img {
    width: 42px;
    display: block;
}

.audio-pause {
    opacity: .45;
}

.audio-caption {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    padding: 80px 0px;

    color: #f6f6f69e;

    text-align: center;
    z-index: 2;
}

.audio-caption p {
    margin: 0 0 12px;
    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1.5rem;
}

.audio-caption p:last-child {
    margin-bottom: 0;
}


/* Cita textual - Nota 01 */

.seccion-cita {
    position: relative;

    width: 100vw;
    height: 100vh;

    margin-left: calc(50% - 50vw);
    margin-top: 100px;
    margin-bottom: 100px;

    background-image: url("../imagenes/foto02-nota01.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

}

.cita-overlay {
    position: absolute;
    inset: 0;

    background: #1212125b;
}


.cita-contenido {
    position: relative;
    z-index: 2;

    max-width: 620px;

    margin: 0;
    text-align: center;

    color: #f6f6f6;
}

.cita-contenido p {
    font-family: ivyjournal, sans-serif;
    font-size: 1.8rem;
    line-height: 1.35;
    margin: 0;
}

.cita-contenido::before {
    content: "“";

    display: block;

    font-family: ivyjournal, sans-serif;
    font-size: 5rem;
    line-height: .6;

    margin-bottom: 20px;
}

.cita-contenido::after {
    content: "”";

    display: block;

    font-family: ivyjournal, sans-serif;
    font-size: 5rem;
    line-height: .8;

    margin-top: 20px;
}

.cita-credito {
    position: absolute;
    bottom: 50px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 2;

    color: #f6f6f6c7;

    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1.3rem;
    color: #f6f6f681;
    margin: 0;
}

/* Galería de dos fotos */

.seccion-galeria {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f6f6f6;
    padding: 50px;
}

.galeria-figura {
    position: relative;
    margin: 0;
    height: 100%;
    overflow: hidden;
}

.galeria-figura img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.galeria-figura figcaption {
    position: absolute;
    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    color: #f6f6f676;
    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1.3rem;
    text-align: center;

    z-index: 2;
}


/* Sección de recirculación */


/* Card de Más historias */

.mas-historias {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #0062ff;
    padding: 140px 0;
}

.mas-historias h2 {
    color: #f6f6f6;
    text-align: center;
    font-family: ivyjournal, sans-serif;
    font-size: 4rem;
    margin-bottom: 80px;
    font-weight: 700;
}

.card-historia {

    display: block;
    background: #f6f6f6;
    color: #121212;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;

    transition: transform 0.35s ease,
        box-shadow 0.35s ease;

}

.card-historia:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
}

.card-historia-img {

    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;

    transition: transform .5s ease;
}

.card-historia:hover .card-historia-img {
    transform: scale(1.05);
}

.card-historia-contenido {
    min-height: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-historia-contenido h3 {
    font-family: ivyjournal, serif;
    font-size: 1.8rem;
    line-height: 1.25;
    margin: 0;
}

.card-historia-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.card-historia-link img {
    width: 28px;
    height: auto;
}


/* Fotografía con crédito */

.seccion-foto-ancha {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 100px;
    margin-bottom: 100px;
}

.foto-ancha-figura {
    position: relative;
    margin: 0;
    height: 100vh;
    overflow: hidden;
}

.foto-ancha-figura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Oscurecido sutil inferior */

.foto-ancha-figura::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 45%,
            rgba(0, 0, 0, 0.65) 100%);
}

.foto-ancha-figura figcaption {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);

    z-index: 2;

    color: #f6f6f68a;
    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1.3rem;
    text-align: center;
}

/* Dato destacado */

.seccion-dato-destacado {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 100px;
    margin-bottom: 100px;
}

.dato-destacado {
    position: relative;
    margin: 0;
    height: 100vh;
    overflow: hidden;
}

.dato-destacado img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dato-destacado::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.55));
}

.dato-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 0 15%;
}

.dato-texto {
    max-width: 700px;

    color: #f6f6f6d8;

    font-family: ivyjournal, sans-serif;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 400;
    margin-top: 500px !important;
}

.dato-destacado figcaption {
    position: absolute;
    bottom: 40px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 2;

    color: #f6f6f681;

    font-family: mr-eaves-xl-modern, sans-serif;
    font-size: 1.3rem;
}


/* Footer */

.footer-home {

    background: #090909;
    padding: 140px 20px;
    text-align: center;
}

.footer-contenido {

    max-width: 760px;
    margin: 0 auto;
}

.footer-logo {

    width: 100px;
    margin-bottom: 40px;
}

.footer-home h2 {

    color: #ffffff;

    font-family: ivyjournal, sans-serif;
    font-weight: 700;

    font-size: 2.9rem;

    line-height: 1.2;

    margin-bottom: 50px;
}

.footer-linea {

    width: 70px;
    height: 3px;

    background: white;

    margin: 0 auto 50px;
}

.footer-contacto {

    color: white;

    font-family: mr-eaves-xl-modern, sans-serif;

    font-size: 1.7rem;

    margin-bottom: 50px;
}

.footer-contacto a {

    display: block;

    margin-top: 10px;

    color: white;

    font-weight: 700;

    text-decoration: none;
}

.footer-contacto a:hover {

    opacity: .8;
    color: #639fff;
}

.footer-legal {

    color: #7f7f7f;

    font-family: mr-eaves-xl-modern, sans-serif;

    font-size: 1.2rem;

    line-height: 1.2;

    max-width: 700px;

    margin: 0 auto;
}



/* Media queries */


@media (max-width: 576px) {


    /* Sección 02 Home - Notas */

    .card-nota-contenido h3 {
        font-size: 2.4rem;
        padding-top: 20px;
    }

}





@media (max-width: 768px) {


    /* Navbar */

    .navbar-personalizada {

        padding: 0 25px;
    }

    .titulo-navbar {

        display: none;
    }

    .menu-lateral {

        width: 80%;
        right: -80%;
        padding: 100px 40px;
    }

    .menu-lateral a {

        font-size: 1.4rem;
    }

    /* Header */

    .header-home {
        background-position: center top;
    }

    .header-contenido {
        max-width: 90%;
        padding-top: 250px;
    }

    .header-titulo-svg {
        width: 65vw;
        margin-bottom: 85px;
    }

    .header-compartir {
        gap: 24px;
        margin-bottom: 85px;
    }

    .header-compartir p {
        font-size: 2rem;
    }

    .header-compartir a img {
        width: 30px;
        height: 30px;
    }

    .header-flecha img {
        width: 33px;
    }

    header-credito {

        right: 20px;
        bottom: 20px;

        font-size: 0.7rem;

        max-width: 180px;

        text-align: right;

    }

    /* Sección Home - Introducción */

    .intro-texto {
        align-items: flex-start;
    }

    .intro-contenido {
        max-width: none;
        padding: 80px 42px 90px;
    }

    .intro-icono {
        width: 70px;
        margin-bottom: 45px;
    }

    .intro-contenido h2 {
        font-size: 3.2rem;
        margin-bottom: 45px;
    }

    .intro-linea {
        margin-bottom: 50px;
    }

    .intro-contenido p {
        font-size: 1.55rem;
        line-height: 1.35;
        margin-bottom: 42px;
    }


    /* Sección Home - Notas */

    .nota {
        padding: 90px 34px 100px;
    }

    .nota-imagen-principal {
        margin-bottom: 60px;
        border-width: 0;
    }

    .nota-header h1 {
        font-size: 3rem;
    }

    .nota-compartir {
        gap: 26px;
    }

    .nota-compartir p {
        font-size: 1.7rem;
    }

    .nota-compartir img {
        width: 34px;
    }

    .nota-creditos {
        font-size: 1.45rem;
        line-height: 1.45;
    }

    .nota-entradilla {
        font-size: 1.8rem;
    }


    /* Notas General */

    .pagina-nota {
        padding: 100px 55px 0 55px;
    }


    .nota-figura-principal figcaption {
        padding: 30px 70px;
        font-size: 1rem;
    }

    .nota-encabezado h1 {
        font-size: 2.7rem;
        line-height: 1.22;
        margin-bottom: 45px;
        margin-top: -10px;
    }


    .nota-compartir img {
        width: 35px;
    }

    .nota-creditos {
        font-size: 1.5rem;
        line-height: 1.45;
        margin-bottom: 80px;
    }

    .nota-cuerpo p {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 38px;
    }


    /* Audio - Nota 01 */

    .seccion-audio {
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .audio-card {
        height: 100vh;
    }

    .audio-imagen {
        object-fit: cover;
        object-position: center;
    }

    .audio-caption {
        position: absolute;
        bottom: 0;
        left: 0;

        background: rgba(0, 0, 0, .45);

        padding: 32px 28px;
    }

    .audio-caption p {
        font-size: 1.4rem;
        line-height: 1.35;
        padding: 10px 60px;
    }

    .audio-controles {
        top: 50%;
    }


    /* Cita textural - Nota 01 */

    .seccion-cita {
        height: 100vh;
        background-position: center;
    }

    .cita-contenido {
        max-width: 82%;
    }

    .cita-contenido p {
        font-size: 1.6rem;
        line-height: 1.45;
        padding: 0 50px;
    }

    .cita-contenido::before,
    .cita-contenido::after {
        font-size: 5.5rem;
    }

    .cita-credito {
        font-family: mr-eaves-xl-modern, sans-serif;
        text-align: center;
        padding: 0 50px;
    }

    /* Galería de dos fotos */

    .seccion-galeria {
        padding: 40px 40px;
    }

    .seccion-galeria .row {
        row-gap: 90px;
    }

    .galeria-figura img {
        height: auto;
    }

    .galeria-figura figcaption {
        text-align: center;

        margin-top: 12px;

        color: #f6f6f689;
        font-size: 1.3rem;
    }


    /* Sección de recirculación */

    .mas-historias {
        padding: 90px 24px;
    }

    .mas-historias h2 {
        font-size: 2.4rem;
        margin-bottom: 55px;
    }

    .mas-historias .row {
        row-gap: 40px;
    }

    .card-historia-img {
        height: 260px;
    }

    .card-historia-contenido {
        min-height: 260px;
        padding: 36px;
    }

    .card-historia-contenido h3 {
        font-size: 2rem;
    }

    .card-historia-link img {
        width: 30px;
    }

    /* Fotografía con crédito */

    @media (max-width: 768px) {

        .seccion-foto-ancha {
            margin-top: 80px;
            margin-bottom: 80px;
        }

        .foto-ancha-figura {
            height: 75vh;
        }

        .foto-ancha-figura img {
            object-position: center;
        }

        .foto-ancha-figura figcaption {
            bottom: 28px;
            width: 80%;
            font-size: 1rem;
        }

    }


    /* Dato destacado */

    .dato-destacado {
        height: 85vh;
    }

    .dato-overlay {
        padding: 0 15%;
    }

    .dato-texto {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .dato-destacado figcaption {
        width: 80%;
        text-align: center;
        bottom: 25px;
    }


    /* Footer */

    .footer-home {

        padding: 120px 35px;
    }

    .footer-logo {

        width: 120px;

        margin-bottom: 60px;
    }

    .footer-home h2 {

        font-size: 2rem;
        margin-bottom: 60px;
        padding: 0 100px;
    }

    .footer-linea {

        width: 90px;

        margin-bottom: 60px;
    }

    .footer-contacto {

        font-size: 2rem;

        margin-bottom: 60px;
    }

    .footer-contacto a {

        font-size: 1.8rem;
    }

    .footer-legal {

        font-size: 1.6rem;
        line-height: 1.2;
        padding: 0 60px;
    }

}





@media (max-width: 1200px) {

    /* Sección Home - Notas */

    .seccion-notas {
        padding: 70px 0;
    }

    .seccion-notas .container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .seccion-notas .row {
        row-gap: 45px;
    }

    .card-nota-img {
        height: 300px !important;
    }

    .card-nota-contenido {
        min-height: 270px;
        padding: 30px 50px
    }

    .card-nota-contenido h3 {
        font-size: 2.4rem;
        padding-top: 20px;
    }

    .card-nota-link {
        font-size: 2rem;
    }

    .card-nota-link img {
        width: 34px;
    }

    /* Galería de dos fotos */

    .seccion-galeria {
        padding: 40px 40px;
    }

    .seccion-galeria .row {
        row-gap: 90px;
    }

    .galeria-figura img {
        height: auto;
    }

    .galeria-figura figcaption {
        text-align: center;

        margin-top: 12px;

        color: #f6f6f689;
        font-size: 1.3rem;
    }


}