/* HEADER FLEX: Logo a la izquierda, menú a la derecha */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 7%; /* padding-block de 10px */
    background: var(--primary-color);
}
.menu ul {
    display: flex;
    gap: 32px;
}
.menu ul li {
    list-style: none;
}
.menu ul li a {
    color: var(--bg-white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1em;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    padding-block: 10px;
    height: 100%;
}
.menu ul li a:hover {
    color: #ffd700;
}
.logo p {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 1rem;
    color: var(--bg-white);
    font-family: var(--font-primary);
    font-weight: 900;
    display: flex;
    align-items: center;
    height: 100%;
}
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* INICIO ESTILOS PERSONALIZADOS */
:root {
    --font-primary: 'Ibarra Real Nova', serif;
    --font-secondary: 'Arimo', sans-serif;
    --font-third: 'Inter', sans-serif;

    --primary-color: #131736;
    --secondary-color: #f5f5f5;
    --bg-white: #ffffff;
    --footer-text: #faefe0;
}

/* FIN ESTILOS PERSONALIZADOS */

.mobile-nav {
    display: none;
}

.menu-nav {
    display: none;
}

#close-menu {
    display: none;
}

/* INICIO ESTILOS GENERALES */
body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    /* background-color: var(--secondary-color); */
    color: var(--primary-color);
    line-height: 1.6;
}

/* INICIO ESTILOS GENERALES */


/* INICIO ESTILOS CABECERA */
.logo {
    font-size: 1.5rem;
    letter-spacing: 1rem;
    color: var(--bg-white);
    text-align: center;
    height: 45px;
    background-color: var(--primary-color);
    width: 100%;
    display: flex;
    justify-content: center;
}

.menu {
    background-color: var(--primary-color);
    height: 45px;
    padding-inline: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu ul {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.menu ul li {
    list-style: none;
    position: relative;
}

.menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 8px 12px;
    display: block;
}

.submenu {
    position: fixed; 
    top: 88px;
    width: 100% !important;
    display: flex;
    background: white;
    box-shadow: none;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    left: 0;
    text-align: center;
    transform: translateY(-10px);
    transition:
        max-height 0.4s ease,
        opacity 0.4s ease,
        transform 0.4s ease;
    Z-index: 1000;
}

.submenu li {
    white-space: nowrap;
    text-align: center;
    width: 100%;
    transition: ease-in-out .3s;
}

.submenu li:hover {
    background-color: var(--secondary-color);
}

.submenu a {
    padding: 10px 20px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 400;
}

.dropdown:hover .submenu {
    max-height: 200px;
    opacity: 1;
    transform: translateY(2px);
}

/* FIN ESTILOS CABECERA */


/* INICIO ESTILOS HERO */
.hero {
    position: relative;
    overflow: hidden;
    height: 80vh;
    display: block;
    background-position: center;
    background-size: cover;
    transition: background-image 1s ease-in-out;
}

.btn_slide {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    padding: 1.4rem 2.5rem;
    font-weight: 800;
    font-size: 1.4rem;
    cursor: pointer;
    font-family: var(--font-secondary);
    transition: background-color 0.3s ease;
    transition:
        transform 600ms ease,
        opacity 600ms ease,
        color 600ms ease,
        border-color 600ms ease;
    transform-origin: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-container {
    position: absolute;
    width: 55%;
    height: 45vh;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: auto;
}

.hero.pos1 .hero-container {
    transform: translate(-90%, -10%);
}

.hero.pos2 .hero-container {
    transform: translate(-125%, 15%);
}

.hero.pos3 .hero-container {
    transform: translate(-125%, 15%);
}

.hero.pos1 .btn_slide,
.hero.pos2 .btn_slide,
.hero.pos3 .btn_slide {
    transform: scale(1);
}

.hero.pos1 .btn_slide {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero.pos2 .btn_slide {
    color: #ffffff;
    border-color: #ffffff;
}

.hero.pos3 .btn_slide {
    color: #ffffff;
    border-color: #ffffff;
}

/* INICIO ESTILOS HERO */


/* INICIO ESTILOS ADMIRA NUESTRA JOYERIA */
.categorias {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categorias-container {
    width: 90%;
}

.titulo_categorias {
    text-align: left;
    font-family: var(--font-third);
    margin-bottom: 30px;
}

.titulo_categorias h2 {
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.titulo_categorias h3 {
    font-weight: 500;
    font-size: 1.5rem;
}

.contenedor_categorias {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--font-third);
}

.item_categoria {
    flex: 1;
    cursor: pointer;
    height: 45vh;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: end;
    justify-content: start;
}

.titulo_categoria {
    background-color: #ffffff60;
    width: 100%;
    padding: 20px;
}

.titulo_categoria hr {
    border: 1px solid var(--primary-color);
}

.anillo {
    background-image: url('/assets/img/categoria1.webp');
    background-size: cover;
    background-position: center;
    color: var(--primary-color);
}

.brazelete {
    background-image: url('/assets/img/categoria2.webp');
    background-size: cover;
    background-position: center;
    color: var(--primary-color);
}

.collar {
    background-image: url('/assets/img/categoria3.webp');
    background-size: cover;
    background-position: center;
    color: var(--primary-color);
}

.arete {
    background-image: url('/assets/img/categoria4.webp');
    background-size: cover;
    background-position: center;
    color: var(--primary-color);
}

.boton_categorias {
    padding-top: 50px;
}

.boton_categorias button {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    padding: 1rem 2.5rem;
    font-weight: 800;
    font-size: 1.4rem;
    cursor: pointer;
    font-family: var(--font-secondary);
    transition: background-color 0.3s ease;
}

.boton_categorias button:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* FIN ESTILOS ADMIRA NUESTRA JOYERIA */



/* INICIO ESTILOS MOMENTOS ESPECIALES */
.momentos {
    background-color: var(--bg-white);
    padding: 70px 0;
}

.titulo_momentos {
    text-align: center;
    font-family: var(--font-third);
    margin-bottom: 30px;
}

.titulo_momentos h2 {
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.titulo_momentos p {
    font-weight: 400;
    font-size: 1.5rem;
}

.texto_momento {
    padding: 20px;
    font-weight: 200;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    font-family: var(--font-third);
}

.contenedor-momentos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    margin-top: 50px;
}

.item_momento {
    flex: 1;
    cursor: pointer;
    height: 80vh;
    position: relative;
    perspective: 1000px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.item_momento .inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.item_momento:hover .inner {
    transform: rotateY(180deg);
}

.item_momento .front .texto_momento h3 {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.item_momento .back .texto_momento h3 {
    color: #ffffff;
    transition: color 0.3s ease;
}

.item_momento .front,
.item_momento .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    justify-content: center;
    color: white;
    padding: 20px;
    font-size: 1.5rem;
}

.item_momento .back {
    transform: rotateY(180deg);
    filter: brightness(0.9);
}

.amor {
    background-image: url('/assets/img/momento1.webp');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
}

.compromiso {
    background-image: url('/assets/img/momento2.webp');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
}

.matrimonio {
    background-image: url('/assets/img/momento3.webp');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
}

.nacimiento {
    background-image: url('/assets/img/momento4.webp');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
}

.graduacion {
    background-image: url('/assets/img/momento5.webp');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
}

/* INICIO ESTILOS MOMENTOS ESPECIALES */



.products {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
}

.products-content {
    padding-top: 30px;
}

.products-container {
    width: 100%;
    text-align: left;
}

.products-container h2 {
    font-weight: 600;
    font-family: var(--font-third);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    word-spacing: 10px;
}

.products-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    font-family: var(--font-primary);
}

.item_product img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

.info_product h3 {
    text-transform: uppercase;
    font-size: 1em;
    color: #131736;
}

.info_product h6 {
    font-size: 1em;
    color: #131736;
}

.info_product p {
    font-size: 0.9em;
    color: #131736;
}



.caracteristicas {
    display: flex;
    padding: 70px 0;
    align-items: center;
    justify-content: center;
}

.caracteristicas-container {
    width: 90%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.caracteristicas-content {
    flex: 1;
    text-align: center;
    font-family: var(--font-primary);
}

.caracteristicas-content h2 {
    font-weight: 600;
    font-size: 2.5rem;
    font-family: var(--font-third);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.caracteristicas-content p {
    font-size: 1.2rem;
    font-family: var(--font-third);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.caracteristicas-content img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}


.arte {
    background-color: var(--bg-white);
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arte-container {
    width: 90%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.arte-container img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.texto_arte {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.texto_arte h2 {
    font-weight: 600;
    font-size: 2.5rem;
    font-family: var(--font-third);
    text-transform: uppercase;
}

.texto_arte p {
    font-size: 1.2rem;
    font-family: var(--font-third);
    color: var(--primary-color);
    text-align: center;
}

.texto_arte span {
    font-size: 1.2rem;
    font-family: var(--font-third);
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 10px;
}



.informacion {
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 70px 0;
    display: flex;
    align-items: center;
    font-family: var(--font-third);
    justify-content: center;
    font-size: 2em;
    font-weight: 800;
}



.historias {
    padding: 70px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.historias-container {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.historias-title {
    width: 90%;
    font-family: var(--font-third);
}

.historias-title h2 {
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.historias-title span {
    font-weight: 600;
    font-size: 1.7rem;
    margin-left: 10px;
    text-transform: uppercase;
}

.historias-content {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.item_historia {
    width: 100%;
}

.historias-content img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    margin-top: 30px;
}


footer {
    background-color: var(--primary-color);
    color: var(--footer-text);
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    text-align: center;
    flex-direction: column;
}

.footer-container {
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.foot-title {
    display: flex;
    flex-direction: start;
    align-items: start;
    gap: 20px;
    font-family: var(--font-third);
    flex-direction: column;
}

.foot-content {
    display: flex;
    text-align: left;
    flex-direction: column;
}

.footer-action {
    display: flex;
    width: 100%;
    border-top: 2px solid var(--bg-white);
    border-bottom: 2px solid var(--bg-white);
    align-items: center;
    justify-content: space-between;
    padding: 5px 100px;
    margin-top: 20px;
}

.footer-container a {
    color: var(--footer-text);
    text-decoration: none;
    font-family: var(--font-third);
}

.footer-action .unete {
    color: var(--footer-text);
    text-decoration: none;
    font-family: var(--font-third);
    font-size: 1.5rem;
}

.social-icons a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    border-radius: 50%;
    background-color: var(--bg-white);
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
    padding: 0;
}

.loto-footer {
    font-family: var(--font-primary);
    font-size: 2.5em;
    font-weight: 600;
}


/* INICIO ESTILOS RESPONSIVE */
@media screen and (max-width: 1199px) and (min-width: 769px) {
    .menu {
        display: none;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: 45px;
        right: 0;
        font-size: 32px;
        z-index: 20;
        cursor: pointer;
    }

    .mobile-nav i {
        color: var(--primary-color);
        padding: 5px;
        background-color: var(--bg-white);
    }

    #close-menu {
        display: none;
    }

    .menu-nav {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 60vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    box-shadow: none;
        transition: top 0.4s ease;
        z-index: 15;
    }

    .menu-nav.open {
        top: 0;
    }

    .dropdown-toggle:focus {
        background-color: #f5f5f5;
    }

    .menu-nav ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .menu-nav ul li {
        list-style: none;
    }

    .menu-nav ul li a {
        font-size: 18px;
        font-family: var(--font-primary);
        padding: 10px;
        color: var(--primary-color);
        text-decoration: none;
    }

    .submenu-movil {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-left: 15px;
    }

    .submenu-movil li {
        padding-top: 15px;
    }

    .submenu-movil li a {
        font-size: 16px !important;
        color: var(--primary-color);
    }

    .dropdown-movil.open .submenu-movil {
        max-height: 300px;
        opacity: 1;
        gap: 5px;
    }
    


    .hero.pos1 .hero-container {
        transform: translate(-50%, 15%);
    }

    .hero.pos2 .hero-container {
        transform: translate(-50%, 15%);
    }

    .hero.pos3 .hero-container {
        transform: translate(-50%, 15%);
    }



    .contenedor_categorias {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .boton_categorias {
        text-align: center;
    }


    .contenedor-momentos {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .item_momento {
        height: 100vh;
    }


    .products-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }


    .caracteristicas-container {
        flex-direction: column;
    }


    .arte-container {
        flex-direction: column-reverse;
    }

    .texto_arte {
        gap: 20px;
    }



    footer {
        text-align: left;
    }

    .footer-container {
        display: grid;
        grid-gap: 30px;
        grid-template-columns: 1fr 1fr;
    }

    .foot-title {
        gap: 10px;
    }

    .footer-action {
        display: grid;
        padding: 15px 30px;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) and (min-width: 481px) {
    .menu {
        display: none;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: 45px;
        right: 0;
        font-size: 32px;
        z-index: 20;
        cursor: pointer;
    }

    .mobile-nav i {
        color: var(--primary-color);
        padding: 5px;
        background-color: var(--bg-white);
    }

    #close-menu {
        display: none;
    }

    .menu-nav {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 60vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: top 0.4s ease;
        z-index: 15;
    }

    .menu-nav.open {
        top: 0;
    }

    .dropdown-toggle:focus {
        background-color: #f5f5f5;
    }

    .menu-nav ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .menu-nav ul li {
        list-style: none;
    }

    .menu-nav ul li a {
        font-size: 18px;
        font-family: var(--font-primary);
        padding: 10px;
        color: var(--primary-color);
        text-decoration: none;
    }

    .submenu-movil {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-left: 15px;
    }

    .submenu-movil li {
        padding-top: 15px;
    }

    .submenu-movil li a {
        font-size: 16px !important;
        color: var(--primary-color);
    }

    .dropdown-movil.open .submenu-movil {
        max-height: 300px;
        opacity: 1;
        gap: 5px;
    }



    .hero.pos1 .hero-container {
        transform: translate(-50%, 15%);
    }

    .hero.pos2 .hero-container {
        transform: translate(-50%, 15%);
    }

    .hero.pos3 .hero-container {
        transform: translate(-50%, 15%);
    }



    .contenedor_categorias {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .boton_categorias {
        text-align: center;
    }


    .contenedor-momentos {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }


    .products-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }


    .caracteristicas-container {
        flex-direction: column;
    }



    .arte-container {
        flex-direction: column-reverse;
    }

    .texto_arte {
        gap: 20px;
    }


    footer {
        text-align: left;
    }

    .footer-container {
        display: grid;
        grid-gap: 30px;
        grid-template-columns: 1fr 1fr;
    }

    .foot-title {
        gap: 10px;
    }

    .footer-action {
        display: grid;
        padding: 15px 30px;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 480px) {
    .menu {
        display: none;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: 45px;
        right: 0;
        font-size: 32px;
        z-index: 20;
        cursor: pointer;
    }

    .mobile-nav i {
        color: var(--primary-color);
        padding: 5px;
        background-color: var(--bg-white);
    }

    #close-menu {
        display: none;
    }

    .menu-nav {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 60vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: top 0.4s ease;
        z-index: 15;
    }

    .menu-nav.open {
        top: 0;
    }

    .dropdown-toggle:focus {
        background-color: #f5f5f5;
    }

    .menu-nav ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .menu-nav ul li {
        list-style: none;
    }

    .menu-nav ul li a {
        font-size: 18px;
        font-family: var(--font-primary);
        padding: 10px;
        color: var(--primary-color);
        text-decoration: none;
    }

    .submenu-movil {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-left: 15px;
    }

    .submenu-movil li {
        padding-top: 15px;
    }

    .submenu-movil li a {
        font-size: 16px !important;
        color: var(--primary-color);
    }

    .dropdown-movil.open .submenu-movil {
        max-height: 300px;
        opacity: 1;
        gap: 5px;
    }



    .hero {
        height: 50vh;
    }

    .hero.pos1 .hero-container {
        transform: translate(-50%, -20%);
    }

    .hero.pos2 .hero-container {
        transform: translate(-50%, -20%);
    }

    .hero.pos3 .hero-container {
        transform: translate(-50%, -20%);
    }

    .btn_slide {
        font-size: 1.2rem;
    }



    .contenedor_categorias {
        flex-direction: column;
    }

    .titulo_categorias h3 {
        font-size: 1.2rem;
    }

    .titulo_categorias h2 {
        font-size: 2rem;
    }

    .item_categoria {
        flex: auto;
    }

    .boton_categorias {
        text-align: center;
    }

    .boton_categorias button {
        font-size: 1rem;
    }


    .titulo_momentos h2 {
        font-size: 2rem;
    }

    .titulo_momentos p {
        font-size: 1rem;
    }

    .contenedor-momentos {
        flex-direction: column;
    }

    .item_momento {
        flex: auto;
        width: 90%;
    }


    .products-container h2 {
        font-size: 2rem;
    }

    .products-content {
        flex-direction: column;
    }


    .caracteristicas-content h2 {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .caracteristicas-content p {
        font-size: 1rem;
    }

    .caracteristicas-container {
        flex-direction: column;
    }

    .caracteristicas-content img {
        height: 50vh;
    }



    .arte-container {
        flex-direction: column-reverse;
    }

    .texto_arte {
        text-align: center;
        gap: 15px;
    }

    .texto_arte h2 {
        font-size: 2rem;
    }

    .texto_arte p {
        font-size: 1rem;
    }

    .arte-container img {
        height: 40vh;
    }



    .historias-title h2 {
        margin-bottom: 0;
    }

    .historias-content img {
        margin-top: 10px;
    }


    .informacion {
        text-align: center;
    }

    footer {
        text-align: left;
    }

    .footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .foot-title {
        gap: 5px;
    }

    .footer-action {
        align-items: start;
        flex-direction: column;
        justify-content: start;
        padding: 5px 20px;
        gap: 20px;
    }

    .social-icons a {
        margin-left: 0;
    }
}