* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #e8dccb;
    color: #5c4a3d;
    min-height: 100vh;
}

/* =========================================
   PORTADA
========================================= */

.portada {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px 20px;

    background:
        linear-gradient(
            rgba(232, 220, 203, 0.88),
            rgba(232, 220, 203, 0.94)
        );

    position: relative;
    overflow: hidden;
}

.corazon {
    font-size: 48px;
    color: #a88b62;
    margin-bottom: 25px;
}

.pequeno {
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    color: #8b7355;
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(48px, 9vw, 90px);
    font-weight: normal;
    color: #59483b;
    letter-spacing: 2px;
}

h1 span {
    color: #a88b62;
    font-style: italic;
}

.linea {
    width: 90px;
    height: 1px;
    background: #a88b62;
    margin: 25px 0;
}

.frase {
    font-size: 22px;
    line-height: 1.6;
    color: #705d4d;
    margin-bottom: 25px;
}

.mensaje {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.8;
    color: #806d5c;
    margin-bottom: 35px;
}

.boton {
    display: inline-block;

    padding: 15px 30px;

    border: 1px solid #a88b62;
    border-radius: 30px;

    color: #6b5745;
    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 1px;

    transition: all 0.3s ease;
}

.boton:hover {
    background: #a88b62;
    color: #fffaf3;
}

.corazon-final {
    margin-top: 45px;
    font-size: 24px;
    color: #a88b62;
}


/* =========================================
   GALERÍA
========================================= */

.galeria-contenedor {
    min-height: 100vh;
    padding: 30px 20px;
}

.galeria-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0 50px;
}

.volver {
    display: inline-block;
    margin-bottom: 40px;

    color: #806d5c;
    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 1px;

    transition: 0.3s ease;
}

.volver:hover {
    color: #a88b62;
}

.galeria-header h1 {
    font-size: clamp(38px, 7vw, 65px);
    margin-bottom: 20px;
}

.galeria-header p {
    color: #806d5c;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   CONTENEDOR DE FOTOGRAFÍAS
========================================= */

.galeria {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================
   CUADRO DE CADA FOTOGRAFÍA
========================================= */

.foto {
    width: 100%;

    aspect-ratio: 1 / 1;

    position: relative;

    overflow: hidden;

    background: #d8c8b4;

    border-radius: 4px;

    box-shadow:
        0 8px 25px rgba(80, 60, 40, 0.12);
}


/* =========================================
   FOTOGRAFÍA REAL
========================================= */

.foto img {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================
   CUADRO SIN FOTOGRAFÍA
========================================= */

.foto-placeholder {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #a88b62;

    font-size: 55px;

    background:
        linear-gradient(
            135deg,
            #dfd1bd,
            #cdb99f
        );
}


/* =========================================
   PIE DE PÁGINA
========================================= */

.galeria-footer {
    text-align: center;

    margin-top: 80px;
    padding: 40px 20px;

    color: #806d5c;
}

.galeria-footer div {
    font-size: 28px;

    color: #a88b62;

    margin-bottom: 15px;
}

.galeria-footer p {
    font-size: 20px;

    margin-bottom: 8px;
}

.galeria-footer small {
    font-family: Arial, sans-serif;

    font-size: 12px;

    letter-spacing: 1px;
}


/* =========================================
   DISEÑO PARA CELULAR
========================================= */

@media (max-width: 600px) {

    .galeria-contenedor {
        padding: 20px 15px;
    }

    .galeria {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .galeria-header {
        padding-bottom: 35px;
    }

    .volver {
        margin-bottom: 30px;
    }
}
/* =========================================
   LOGIN ADMINISTRATIVO
========================================= */

.login-contenedor {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 20px;

    background:
        linear-gradient(
            135deg,
            #e8dccb,
            #dfd0bb
        );
}


/* TARJETA */

.login-card {
    width: 100%;
    max-width: 450px;

    padding: 50px 45px;

    text-align: center;

    background: rgba(255, 250, 243, 0.92);

    border: 1px solid rgba(168, 139, 98, 0.35);

    border-radius: 8px;

    box-shadow:
        0 20px 50px rgba(80, 60, 40, 0.15);
}


/* CORAZÓN */

.login-corazon {
    font-size: 42px;

    color: #a88b62;

    margin-bottom: 18px;
}


/* NOMBRE */

.login-pequeno {
    font-family: Arial, sans-serif;

    font-size: 11px;

    letter-spacing: 4px;

    color: #8b7355;

    margin-bottom: 15px;
}


/* TITULO */

.login-card h1 {
    font-size: 38px;

    font-weight: normal;

    color: #59483b;

    letter-spacing: 1px;

    margin-bottom: 15px;
}


/* DESCRIPCIÓN */

.login-descripcion {
    color: #806d5c;

    font-size: 15px;

    line-height: 1.6;

    margin-bottom: 30px;
}


/* CAMPOS */

.campo {
    text-align: left;

    margin-bottom: 20px;
}

.campo label {
    display: block;

    margin-bottom: 8px;

    color: #6b5745;

    font-family: Arial, sans-serif;

    font-size: 13px;
}

.campo input {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #cbb99f;

    border-radius: 4px;

    background: #fffaf3;

    color: #59483b;

    font-family: Arial, sans-serif;

    font-size: 15px;

    outline: none;

    transition: border-color 0.3s ease;
}

.campo input:focus {
    border-color: #a88b62;
}


/* BOTÓN */

.boton-login {
    width: 100%;

    padding: 14px 20px;

    margin-top: 5px;

    border: 1px solid #a88b62;

    border-radius: 30px;

    background: transparent;

    color: #6b5745;

    font-family: Arial, sans-serif;

    font-size: 14px;

    letter-spacing: 1px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.boton-login:hover {
    background: #a88b62;

    color: #fffaf3;
}


/* ERROR */

.login-error {
    margin-bottom: 20px;

    padding: 12px;

    border: 1px solid #c9a99a;

    border-radius: 4px;

    background: #f4e5dc;

    color: #805848;

    font-family: Arial, sans-serif;

    font-size: 13px;
}


/* VOLVER */

.volver-login {
    display: inline-block;

    margin-top: 25px;

    color: #806d5c;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;

    transition: color 0.3s ease;
}

.volver-login:hover {
    color: #a88b62;
}


/* CELULAR */

@media (max-width: 600px) {

    .login-card {
        padding: 40px 25px;
    }

    .login-card h1 {
        font-size: 32px;
    }

}
/* =========================================
   PANEL DE ADMINISTRACIÓN
========================================= */

.admin-contenedor {
    min-height: 100vh;

    padding: 35px 30px;

    background:
        linear-gradient(
            135deg,
            #e8dccb,
            #dfd0bb
        );
}


/* ENCABEZADO */

.admin-header {
    max-width: 1100px;

    margin: 0 auto 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.admin-pequeno {
    font-family: Arial, sans-serif;

    font-size: 11px;

    letter-spacing: 4px;

    color: #8b7355;

    margin-bottom: 10px;
}

.admin-header h1 {
    font-size: clamp(38px, 6vw, 60px);

    font-weight: normal;

    color: #59483b;

    margin-bottom: 10px;
}

.admin-bienvenida {
    color: #806d5c;

    font-size: 16px;
}


/* CERRAR SESIÓN */

.boton-salir {
    padding: 12px 22px;

    border: 1px solid #a88b62;

    border-radius: 30px;

    color: #6b5745;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;

    transition: all 0.3s ease;

    white-space: nowrap;
}

.boton-salir:hover {
    background: #a88b62;

    color: #fffaf3;
}


/* TARJETAS */

.admin-contenido {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.admin-card {
    padding: 35px 25px;

    text-align: center;

    background: rgba(255, 250, 243, 0.92);

    border: 1px solid rgba(168, 139, 98, 0.3);

    border-radius: 8px;

    box-shadow:
        0 12px 30px rgba(80, 60, 40, 0.1);
}

.admin-icono {
    font-size: 38px;

    margin-bottom: 15px;

    color: #a88b62;
}

.admin-card h2 {
    font-size: 25px;

    font-weight: normal;

    color: #59483b;

    margin-bottom: 12px;
}

.admin-card p {
    color: #806d5c;

    line-height: 1.6;
}

.admin-numero {
    font-size: 42px;

    color: #a88b62 !important;

    margin: 5px 0;
}


/* BOTONES DEL PANEL */

.admin-boton {
    display: inline-block;

    margin-top: 20px;

    padding: 12px 25px;

    border: 1px solid #a88b62;

    border-radius: 30px;

    color: #6b5745;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;

    transition: all 0.3s ease;
}

.admin-boton:hover {
    background: #a88b62;

    color: #fffaf3;
}


/* PIE */

.admin-footer {
    max-width: 1100px;

    margin: 70px auto 0;

    padding: 35px 20px;

    text-align: center;

    color: #806d5c;
}

.admin-footer div {
    font-size: 28px;

    color: #a88b62;

    margin-bottom: 10px;
}

.admin-footer p {
    font-size: 19px;

    margin-bottom: 6px;
}

.admin-footer small {
    font-family: Arial, sans-serif;

    font-size: 11px;

    letter-spacing: 1px;
}


/* CELULAR */

@media (max-width: 750px) {

    .admin-header {
        flex-direction: column;

        align-items: flex-start;
    }

    .admin-contenido {
        grid-template-columns: 1fr;
    }

    .boton-salir {
        align-self: flex-start;
    }

}

@media (max-width: 600px) {

    .admin-contenedor {
        padding: 25px 15px;
    }

}
/* =========================================
   SUBIR FOTOGRAFÍAS
========================================= */

.subir-contenedor {
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px 20px;

    background:
        linear-gradient(
            135deg,
            #e8dccb,
            #dfd0bb
        );
}


.subir-card {
    width: 100%;

    max-width: 600px;

    padding: 45px;

    text-align: center;

    background: rgba(255, 250, 243, 0.94);

    border: 1px solid rgba(168, 139, 98, 0.35);

    border-radius: 8px;

    box-shadow:
        0 20px 50px rgba(80, 60, 40, 0.15);
}


.subir-volver {
    display: inline-block;

    margin-bottom: 25px;

    color: #806d5c;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;
}


.subir-corazon {
    font-size: 42px;

    color: #a88b62;

    margin-bottom: 15px;
}


.subir-pequeno {
    font-family: Arial, sans-serif;

    font-size: 11px;

    letter-spacing: 4px;

    color: #8b7355;

    margin-bottom: 15px;
}


.subir-card h1 {
    font-size: 40px;

    font-weight: normal;

    color: #59483b;

    margin-bottom: 15px;
}


.subir-descripcion {
    color: #806d5c;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 30px;
}


/* INPUT OCULTO */

#fotos {
    display: none;
}


/* SELECTOR */

.selector-fotos {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 180px;

    padding: 30px;

    border: 2px dashed #c5ad8d;

    border-radius: 8px;

    background: #f8f0e5;

    color: #6b5745;

    font-family: Arial, sans-serif;

    font-size: 15px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.selector-fotos:hover {
    border-color: #a88b62;

    background: #f3e8da;
}


.selector-icono {
    font-size: 45px;
}


.selector-fotos small {
    color: #99826b;

    font-size: 12px;
}


/* ARCHIVOS SELECCIONADOS */

.nombre-archivos {
    margin-top: 15px;

    color: #806d5c;

    font-family: Arial, sans-serif;

    font-size: 13px;
}


/* BOTÓN */

.boton-subir {
    width: 100%;

    margin-top: 25px;

    padding: 15px 25px;

    border: 1px solid #a88b62;

    border-radius: 30px;

    background: transparent;

    color: #6b5745;

    font-family: Arial, sans-serif;

    font-size: 14px;

    letter-spacing: 1px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.boton-subir:hover {
    background: #a88b62;

    color: #fffaf3;
}


/* MENSAJE */

.subir-mensaje {
    margin-bottom: 20px;

    padding: 13px;

    border-radius: 5px;

    background: #e7ddcf;

    border: 1px solid #bba585;

    color: #66533f;

    font-family: Arial, sans-serif;

    font-size: 13px;
}


/* ERROR */

.subir-error {
    margin-bottom: 20px;

    padding: 13px;

    border-radius: 5px;

    background: #f4e5dc;

    border: 1px solid #c9a99a;

    color: #805848;

    font-family: Arial, sans-serif;

    font-size: 13px;
}


/* NOTA */

.subir-nota {
    margin-top: 20px;

    color: #99826b;

    font-family: Arial, sans-serif;

    font-size: 11px;
}


/* CELULAR */

@media (max-width: 600px) {

    .subir-card {
        padding: 35px 20px;
    }

    .subir-card h1 {
        font-size: 32px;
    }

}
/* =========================================
   GALERÍA VACÍA
========================================= */

.galeria-vacia {
    grid-column: 1 / -1;

    min-height: 300px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: rgba(255, 250, 243, 0.5);

    border: 1px solid rgba(168, 139, 98, 0.25);

    border-radius: 8px;

    color: #806d5c;
}

.galeria-vacia div {
    font-size: 50px;

    color: #a88b62;

    margin-bottom: 15px;
}

.galeria-vacia p {
    font-size: 16px;
}
/* =========================================
   VISOR DE FOTOGRAFÍAS
========================================= */

.foto-enlace {
    display: block;

    width: 100%;
    height: 100%;

    text-decoration: none;
}

.visor {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(45, 35, 27, 0.92);
}

.visor.visor-activo {
    display: flex;
}

.visor-contenido {
    max-width: 1000px;
    max-height: 90vh;

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}

.visor-contenido img {
    max-width: 100%;
    max-height: 75vh;

    width: auto;
    height: auto;

    display: block;

    object-fit: contain;

    border-radius: 4px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4);
}

.visor-cerrar {
    position: absolute;

    top: 20px;
    right: 25px;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(255, 250, 243, 0.5);

    border-radius: 50%;

    background: transparent;

    color: #fffaf3;

    font-size: 32px;

    line-height: 1;

    cursor: pointer;
}

.visor-cerrar:hover {
    background: #a88b62;

    border-color: #a88b62;
}

.visor-controles {
    margin-top: 20px;
}

.boton-descargar {
    display: inline-block;

    padding: 13px 25px;

    border: 1px solid #c5ad8d;

    border-radius: 30px;

    background: #a88b62;

    color: #fffaf3;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 0.5px;

    transition: all 0.3s ease;
}

.boton-descargar:hover {
    background: #c09f6c;
}


/* =========================================
   EFECTO AL PASAR SOBRE UNA FOTO
========================================= */

.foto-enlace img {
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.foto-enlace:hover img {
    transform: scale(1.03);

    filter: brightness(0.92);
}


/* CELULAR */

@media (max-width: 600px) {

    .visor {
        padding: 15px;
    }

    .visor-contenido img {
        max-height: 70vh;
    }

    .visor-cerrar {
        top: 12px;
        right: 12px;
    }

}
/* =========================================
   NAVEGACIÓN GENERAL
========================================= */

.navegacion {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 30px;

    margin-bottom: 45px;
}

.navegacion a {
    color: #806d5c;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 0.5px;

    transition: color 0.3s ease;
}

.navegacion a:hover,
.navegacion a.activo {
    color: #a88b62;
}


/* =========================================
   NAVEGACIÓN ADMINISTRATIVA
========================================= */

.admin-navegacion {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

    justify-content: flex-end;
}

.admin-navegacion a:not(.boton-salir) {
    padding: 10px 16px;

    border: 1px solid rgba(168, 139, 98, 0.5);

    border-radius: 25px;

    color: #6b5745;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 12px;

    transition: all 0.3s ease;
}

.admin-navegacion a:not(.boton-salir):hover {
    background: #a88b62;

    color: #fffaf3;
}


/* =========================================
   NAVEGACIÓN SUBIR FOTOS
========================================= */

.subir-navegacion {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 25px;

    margin-bottom: 30px;

    flex-wrap: wrap;
}

.subir-navegacion a {
    color: #806d5c;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;

    transition: color 0.3s ease;
}

.subir-navegacion a:hover {
    color: #a88b62;
}


/* CELULAR */

@media (max-width: 700px) {

    .navegacion {
        gap: 18px;

        flex-wrap: wrap;

        margin-bottom: 30px;
    }

    .admin-navegacion {
        width: 100%;

        justify-content: flex-start;
    }

}
/* =========================================
   GESTOR DE FOTOGRAFÍAS
========================================= */

.fotos-admin-contenedor {
    min-height: 100vh;

    padding: 30px 25px;

    background:
        linear-gradient(
            135deg,
            #e8dccb,
            #dfd0bb
        );
}


/* NAVEGACIÓN */

.admin-fotos-nav {
    max-width: 1200px;

    margin: 0 auto 45px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;
}

.admin-fotos-nav a {
    color: #806d5c;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;

    transition: color 0.3s ease;
}

.admin-fotos-nav a:hover {
    color: #a88b62;
}


/* ENCABEZADO */

.fotos-admin-header {
    max-width: 800px;

    margin: 0 auto 35px;

    text-align: center;
}

.fotos-admin-header h1 {
    font-size: clamp(38px, 7vw, 60px);

    font-weight: normal;

    color: #59483b;

    margin-bottom: 15px;
}

.fotos-admin-header p:last-child {
    color: #806d5c;

    font-size: 16px;

    line-height: 1.7;
}


/* MENSAJES */

.fotos-mensaje,
.fotos-error {
    max-width: 600px;

    margin: 0 auto 25px;

    padding: 13px 18px;

    text-align: center;

    border-radius: 5px;

    font-family: Arial, sans-serif;

    font-size: 13px;
}

.fotos-mensaje {
    background: #e7ddcf;

    border: 1px solid #bba585;

    color: #66533f;
}

.fotos-error {
    background: #f4e5dc;

    border: 1px solid #c9a99a;

    color: #805848;
}


/* CONTADOR */

.fotos-contador {
    max-width: 1200px;

    margin: 0 auto 25px;

    color: #806d5c;

    font-family: Arial, sans-serif;

    font-size: 13px;

    text-align: left;
}


/* GRID */

.fotos-admin-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* TARJETA */

.foto-admin-card {
    overflow: hidden;

    background: #fffaf3;

    border: 1px solid
        rgba(168, 139, 98, 0.3);

    border-radius: 7px;

    box-shadow:
        0 10px 25px
        rgba(80, 60, 40, 0.1);
}


/* IMAGEN */

.foto-admin-imagen {
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #d8c8b4;
}

.foto-admin-imagen img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.foto-admin-card:hover
.foto-admin-imagen img {
    transform: scale(1.04);
}


/* INFORMACIÓN */

.foto-admin-info {
    padding: 15px;
}

.foto-admin-nombre {
    margin-bottom: 5px;

    color: #59483b;

    font-family: Arial, sans-serif;

    font-size: 13px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.foto-admin-info small {
    color: #99826b;

    font-family: Arial, sans-serif;

    font-size: 10px;
}


/* ACCIONES */

.foto-admin-acciones {
    display: flex;

    gap: 8px;

    margin-top: 15px;
}

.foto-ver,
.foto-eliminar {
    flex: 1;

    padding: 9px 8px;

    text-align: center;

    border-radius: 20px;

    font-family: Arial, sans-serif;

    font-size: 11px;

    cursor: pointer;

    text-decoration: none;
}


/* VER */

.foto-ver {
    border: 1px solid #a88b62;

    color: #6b5745;

    background: transparent;
}

.foto-ver:hover {
    background: #a88b62;

    color: #fffaf3;
}


/* ELIMINAR */

.foto-eliminar {
    border: 1px solid #b99a88;

    color: #805848;

    background: transparent;
}

.foto-eliminar:hover {
    background: #b99a88;

    color: #fffaf3;
}


/* SIN FOTOS */

.fotos-admin-vacia {
    max-width: 700px;

    min-height: 300px;

    margin: 0 auto;

    padding: 40px 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        rgba(255, 250, 243, 0.65);

    border: 1px solid
        rgba(168, 139, 98, 0.25);

    border-radius: 8px;
}

.fotos-admin-vacia div {
    font-size: 50px;

    color: #a88b62;

    margin-bottom: 15px;
}

.fotos-admin-vacia h2 {
    font-weight: normal;

    color: #59483b;

    margin-bottom: 10px;
}

.fotos-admin-vacia p {
    color: #806d5c;

    margin-bottom: 20px;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .fotos-admin-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .fotos-admin-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 480px) {

    .fotos-admin-contenedor {
        padding: 25px 15px;
    }

    .fotos-admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-fotos-nav {
        gap: 15px;
    }

}
/* =========================================
   FLECHAS DEL VISOR
========================================= */

.visor-flecha {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10001;

    width: 55px;
    height: 55px;

    border: 1px solid
        rgba(255, 250, 243, 0.5);

    border-radius: 50%;

    background:
        rgba(168, 139, 98, 0.75);

    color: #fffaf3;

    font-size: 42px;

    line-height: 45px;

    text-align: center;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.visor-flecha:hover {
    background: #a88b62;

    transform:
        translateY(-50%)
        scale(1.08);
}

.visor-flecha-izquierda {
    left: 25px;
}

.visor-flecha-derecha {
    right: 25px;
}


/* CELULAR */

@media (max-width: 600px) {

    .visor-flecha {
        width: 45px;
        height: 45px;

        font-size: 34px;

        line-height: 36px;
    }

    .visor-flecha-izquierda {
        left: 10px;
    }

    .visor-flecha-derecha {
        right: 10px;
    }

}