<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&amp;display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&amp;family=Courgette&amp;family=Leckerli+One&amp;family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Sriracha&amp;family=Yellowtail&amp;display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&amp;family=Courgette&amp;family=Leckerli+One&amp;family=Manrope:wght@200..800&amp;family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Sriracha&amp;family=Yellowtail&amp;display=swap');



:root {
    --primary-color: #ffffff;
    --secondary-color: #00a7d9;
    --light-color: #00a7d9;
    --dark-color: #000000;
    --formal-dark-color: #333;
    --formal-light-color: #f1f1f1;
    --desert-color: #00a7d9;
}

html,
body {
    height: 100%;
    margin: 0;

    /* Elimina el margen predeterminado */
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

body {
    background-color: var(--formal-dark-color);
    flex-direction: column;
    /* O puedes usar row dependiendo de tu diseÃ±o */
}

html {
    font-size: 62.5%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*             UTILIDADES             */
.container {
    max-width: 250rem;
    margin: 0 auto;
}

.heading-1 {
    text-align: center;
    font-weight: 500;
    font-size: 3rem;
}


/*               HEADER               */
.container-hero {
    background-color: var(--dark-color);
    position: fixed;
    /* Fija el header en la parte superior */
    top: 0;
    /* Asegura que se posicione en la parte superior */
    left: 0;
    /* Asegura que comience desde el borde izquierdo */
    width: 100%;
    /* Asegura que abarque todo el ancho de la pantalla */
    z-index: 1000;
    /* Coloca el header por encima de otros elementos */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* AÃ±ade una sombra para un efecto de elevaciÃ³n */
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.customer-support {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.customer-support i {
    font-size: 3.3rem;
}

.content-customer-support {
    display: flex;
    flex-direction: column;
}

.container-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 10px;
    /* Espacio a la izquierda */

}

.container-logo i {
    font-size: 3rem;
}

.container-logo h1 a {
    text-decoration: none;
    color: var(--default-color);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo {
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    background-image: url(../images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 80px;
    height: 75px;
    max-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    text-align: center;
}

/* ************* NAVBAR ************* */
.navbar {
    display: flex;
    align-items: center;
    padding: 2rem 0;
    min-height: 60px;
    position: relative;
    justify-content: space-between;
}

.container-navbar {
    background-color: var(--primary-color);
    position: relative;
}

.navbar .fa-bars {
    display: none;
    font-size: 3rem;
    color: var(--dark-color);
    cursor: pointer;
}

.menu {
    display: flex;
    gap: 5rem;

}

.fa-lg {
    color: var(--secondary-color);
}

.menu li {
    list-style: none;
}

.menu a {
    text-decoration: none;
    font-size: 1.7rem;
    font-size: 1.7rem;
    color: var(--formal-dark-color);
    font-weight: 600;
    text-transform: uppercase;
    position: relative;

}

.menu a::after {
    content: '';
    width: 1.5rem;
    height: 1px;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%, 50%);
    opacity: 0;
    transition: all 1s ease;
}

.menu a:hover::after {
    opacity: 1;
}

.menu a:hover {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.container-user {
    padding-right: 20px;
}

/* ************* DROPDOWN ************* */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    list-style: none;
    display: none;
    position: absolute;
    min-width: 165px;
    background-color: var(--primary-color);
    z-index: 101;
    text-align: center;
    padding: 10px 0;
    left: 50%;
    transform: translateX(-50%);
    
    max-height: 350px; /* Ajusta segÃºn el tamaÃ±o de los elementos */
    overflow-y: auto;  /* Activa el scroll si hay mÃ¡s de 9 elementos */
}

/* Mostrar dropdown sin animaciones */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

/* Estiliza los enlaces dentro del dropdown */
.dropdown-content a {
    color: var(--secondary-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Hover para enlaces */
.dropdown-content a:hover {
    color: var(--dark-color);
}

.dropdown-content::-webkit-scrollbar {
    width: 3px; /* Ancho de la barra de scroll */
}

.dropdown-content::-webkit-scrollbar-track {
    background: #c4c4c4; /* Color del fondo del scrollbar */
    border-radius: 5px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--formal-dark-color); /* Color de la barra */
    border-radius: 5px; /* Bordes redondeados */
}

/* ************* MENU LATERAL ************* */
.dropbtn {
    color: #000000;
    text-decoration: none;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -210px;
    width: 210px;
    height: 100%;
    background-color: #fff;
    transition: left 0.3s ease;
    z-index: 100;
}

.side-menu.active {
    left: 0;
}

.side-menu.active~.dropdown .dropdown-content {
    right: -210px;
    /* Ajusta la posiciÃ³n a la derecha del menÃº lateral */
    left: auto;
    transform: translateX(0);
}

.side-menu .close-btn {
    font-size: 3rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--light-color);
}

.side-menu-list {
    list-style: none;
    padding: 2rem;
}

.side-menu-list li {
    margin: 1rem 0;
}

.side-menu-list a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0px 8px 16px rgba(233, 233, 233, 0);
}

.side-menu-list a:hover {
    color: var(--light-color);
    box-shadow: 0px 8px 16px rgba(233, 233, 233, 0);
}

/* ************* RESPONSIVE NAVBAR ************* */
@media (max-width: 900px) {

    .navbar {
        justify-content: center;
        display: flex;
        position: relative;
    }

    .main-content .container-tb {
        display: flex;
        justify-content: center;
        padding: 20px;
        color: var(--light-color);
        font-weight: 400;
        font-style: normal;
        font-size: 2.5rem;
        transform: translateY(-250px);
        z-index: 1;
    }

    .fa-lg {
        color: var(--light-color);
    }

    .container-logo {
        margin-left: 0;
        justify-content: center;
    }

    .menu {
        display: none;
    }

    .container-user {
        font-size: 3rem;
        color: var(--secondary-color);
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
    }

    .menu-toggle {
        display: block;
        font-size: 3rem;
        color: var(--dark-color);
        cursor: pointer;
        position: absolute;
        left: 20px;
    }

    .search-form {
        display: none;
    }

    .side-menu {
        position: fixed;
        top: 0;
        left: -210px;
        width: 210px;
        height: 100%;
        background-color: var(--formal-dark-color);
        transition: left 0.3s ease;
        z-index: 100;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        min-width: 165px;
        max-width: 165px;
        z-index: 101;
        text-align: center;
        top: -25px;
        left: 180px;
        transform: translateX(0);
        border-radius: 3px;
        background-color: var(--formal-dark-color);
    }

    .side-menu-list a {
        color: var(--primary-color);
    }

    .side-menu-list a:hover {
        color: var(--light-color);
    }

    .dropdown {
        position: relative;
        display: inline-block;
    }


    .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: #000000;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropdown-content a:hover {
        background-color: var(--secundary-color);
        color: var(--dark-color);
    }

    .dropdown-content::-webkit-scrollbar {
        width: 3px; /* Ancho de la barra de scroll */
    }
    
    .dropdown-content::-webkit-scrollbar-track {
        background: var(--light-color); /* Color del fondo del scrollbar */
        border-radius: 5px;
    }
    
    .dropdown-content::-webkit-scrollbar-thumb {
        background: var(--formal-dark-color); /* Color de la barra */
        border-radius: 5px; /* Bordes redondeados */
    }

    .navbar {
        justify-content: center;
        display: flex;
        position: relative;
    }

    .side-menu {
        position: fixed;
        top: 0;
        left: -210px;
        width: 210px;
        height: 100%;
        background-color: var(--formal-dark-color);
        transition: left 0.3s ease;
        z-index: 100;
    }

    .side-menu-list a {
        color: var(--primary-color);
    }

    .side-menu-list a:hover {
        color: var(--light-color);
    }

    .container-logo {
        margin-left: 0;
        justify-content: center;
    }

    .menu {
        display: none;
    }

    .container-user {
        font-size: 3rem;
        color: var(--secondary-color);
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
    }

    .menu-toggle {
        display: block;
        font-size: 3rem;
        cursor: pointer;
        position: absolute;
        left: 20px;
    }

    .search-form {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        justify-content: center;
        display: flex;
        position: relative;
    }

    .container-logo {
        margin-left: 0;
        justify-content: center;
    }

    .menu {
        display: none;
    }

    .container-user {
        font-size: 3rem;
        color: var(--secondary-color);
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
    }

    .menu-toggle {
        display: block;
        font-size: 3rem;
        color: var(--dark-color);
        cursor: pointer;
        position: absolute;
        left: 20px;
    }

    .search-form {
        display: none;
    }

    .side-menu {
        position: fixed;
        top: 0;
        left: -165px;
        width: 165px;
        height: 100%;
        background-color: var(--formal-dark-color);
        transition: left 0.3s ease;
        z-index: 100;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        min-width: 165px;
        max-width: 165px;
        z-index: 101;
        text-align: center;
        top: -25px;
        left: 135px;
        transform: translateX(0);
        border-radius: 3px;
        background-color: var(--formal-dark-color);
    }

    .side-menu-list a {
        color: var(--primary-color);
    }

    .side-menu-list a:hover {
        color: var(--light-color);
    }
}

/* ********************************** */
/*               BANNER               */
/* ********************************** */

.banner {
    position: relative;
    /* Control sobre z-index de los hijos */
    height: 80rem;
    /* Altura de la secciÃ³n */
    display: flex;
    /* Habilita flexbox */
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra verticalmente */
    background-size: cover;
    /* Ajusta el fondo al contenedor */
    background-position: center;
    /* Centra el fondo */
    background-image:
        linear-gradient(100deg, rgba(29, 29, 29, 0.227), rgba(0, 0, 0, 0.5)),
        url('../images/iglesia.jpg');
}

.logo-banner {
    width: 450px;
    /* TamaÃ±o del logo */
    height: 450px;
    /* TamaÃ±o del logo */
    background-size: contain;
    /* Escala la imagen para ajustarse al contenedor */
    background-repeat: no-repeat;
    /* Evita que se repita */
    background-position: center;
    /* Centra la imagen del logo */
    z-index: 3;
    /* Coloca el logo por encima del fondo */
    position: absolute;
    /* Posiciona el logo de manera absoluta */
    top: 50%;
    /* Centra verticalmente */
    transform: translateY(-50%);
    /* Ajusta la posiciÃ³n vertical */
    opacity: 0.8;
}

.logo-left {
    left: 0;
    /* Alinea el logo a la izquierda */
    background-image: url(../images/logo-left.png);
}

.logo-right {
    right: 0;
    /* Alinea el logo a la derecha */
    background-image: url(../images/logo-rigth.PNG);
}


/* Media query para pantallas menores a 1300px */
@media (max-width: 1300px) {

    /* Media query para pantallas menores a 900px */
    .logo-left,
    .logo-right {
        display: none;
        /* Oculta los logos */
        width: 0%;
    }

    .logo-left {
        display: block;
        /* Oculta el logo izquierdo */
    }

    .logo-right {
        display: none;
        /* Asegura que el logo derecho se muestre */
    }
}

.text-container {
    display: flex;
    flex-direction: column;
    /* Coloca los hijos en columna */
    align-items: center;
    /* Centra horizontalmente */
    text-align: center;
    /* Centra el texto */
}

.banner p,
.banner i {
    margin: 0;
    /* Elimina mÃ¡rgenes */
}

.banner p {
    color: var(--primary-color);
    font-size: 8rem;
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
}

.banner i {
    color: #00a7d9;
    font-size: 4rem;
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
}

.content-banner {
    max-width: 90rem;
    margin: 0 auto;
    padding: 25rem 0;
}

.content-banner p {
    color: var(--light-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.content-banner h2 {
    color: #fff;
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.2;
}

.content-banner a {
    margin-top: 2rem;
    text-decoration: none;
    color: #000000;
    background-color: var(--secondary-color);
    display: inline-block;
    padding: 1.8rem 3rem;
    text-transform: uppercase;
    border-radius: 3rem;
    font-size: 1.2rem;
    font-weight: bold;
}

/* ********************************** */
/*            MAIN CONTENT            */
/* ********************************** */

.main-content {
    background-color: var(--formal-light-color);
    position: relative;
    /* Asegura el posicionamiento relativo */
}

/* Estilos generales para .container-tb */
.container-tb {
    display: flex;
    justify-content: center;
    padding: 20px;
    color: var(--light-color);
    font-weight: 400;
    font-style: normal;
    font-size: 1.8rem;
    transform: translateY(-250px);
    /* Sobresale hacia arriba */
    z-index: 1;
    /* Asegura que estÃ© sobre otros elementos */
    margin-bottom: -250px; /* Eliminar espacio entre contenedores */
}

/* Estilos generales para .container-products */
.container-products {
    background-color: var(--primary-color);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    /* Mantiene la disposiciÃ³n en columna */
    align-items: center;
    max-width: 1500px;
    /* MÃ¡ximo ancho permitido */
    width: 100%;
    padding: 20px;
    /* Espaciado interno */
    box-sizing: border-box;
    /* Asegura que el padding se incluya en el tamaÃ±o total */

    /* Sombra flotante */
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.684);

    /* Elimina restricciones de altura */
    height: auto;
    /* Permite que crezca automÃ¡ticamente */
    min-height: 100px;
    /* Opcional: altura mÃ­nima para diseÃ±o */
}

/* TÃ­tulo */
.title-carta {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Grid de noticias */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 50px 0;
    justify-items: center;
    width: 100%;
    padding: 20px;
    background-color: var(--formal-light-color);
    border-radius: 2rem;

}

.news-grid-2 {
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 50px 0;
    justify-items: center;
    width: 100%;
    padding: 20px;
    background-color: var(--formal-light-color);
    border-radius: 2rem;
}

/* Tarjeta de noticia */
.news-card {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    width: 100%;
    max-width: 380px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.684);
    transition: transform 0.3s ease;
}

/* Imagen de la noticia */
.news-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 400px;
    transition: opacity 0.9s ease-in-out;
}

/* Efecto al pasar el cursor sobre el contenedor */
.news-card:hover {
    transform: scale(1.1);
}

/* Efecto al pasar el cursor sobre la imagen */
.news-card:hover .news-img {
    opacity: 0.8;
}

/* TÃ­tulo de la noticia */
.news-title {
    font-size: 2.3rem;
    margin: 0;
    color: var(--secondary-color);
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    text-align: center;
}

/* InformaciÃ³n de la noticia */
.news-info {
    font-size: 1.6rem;
    color: var(--secondary-color-dark);
    line-height: 1.5;
    text-align: justify;
    padding: 10px;
    overflow: hidden;
    display: -webkit-box;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

/* Estilos para el modal */
.news-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.news-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    text-align: center;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.news-modal-content h3 {
    font-size: 3rem;
    padding: 1.2rem;
    color: var(--desert-color);
}

.news-modal-content p {
    font-size: 2rem;
    text-align: justify;
    padding: 1rem;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    word-spacing: 2px;
}

.modal-img {
    width: 100%;
    max-height: 500px; /* Limita la altura mÃ¡xima */
    border-radius: 10px;
    object-fit: contain; /* Ajusta la imagen para mostrar toda su altura */
    margin-bottom: 20px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    margin: auto;
}

.carousel {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
}

.carousel-img {
    width: 100%;
    max-height: 500px; /* Limita la altura mÃ¡xima */
    border-radius: 10px;
    object-fit: contain; /* Ajusta la imagen para mostrar toda su altura */
    display: none;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.video-carousel-item {
    width: 100%;
    max-height: 500px;
    display: none;
}

.video-container {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 400px;
    transition: opacity 0.9s ease-in-out;
}

/* ********************************** */
/*               GALLERY              */
/* ********************************** */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
    color: var(--dark-color);
    white-space: normal; /* Cambiar a normal para permitir el ajuste automÃ¡tico */
    word-wrap: break-word; /* Permitir el ajuste de palabras largas */
    overflow-wrap: break-word; /* Alternativa para el ajuste de palabras largas */
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--primary-color);
    padding-bottom: 3rem;
}

.gallery-item {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    position: relative;
    margin: 0; /* Eliminar margen entre contenedores */
    width: 490px; /* Aumentar el tamaÃ±o del contenedor */
    padding: 10px;
    height: 350px; /* Aumentar el tamaÃ±o del contenedor */
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* AÃ±adir transiciÃ³n para la animaciÃ³n */
}

.gallery-item:hover img {
    transform: scale(1.1); /* Efecto de zoom al hacer hover */
}

.gallery h3{
    font-size: 2rem;
    color: var(--light-color);
}

.gallery p{
    font-size: 1.5rem;
    text-align: justify;
    padding-left: 3rem;
    padding-right: 3rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease; /* AÃ±adir transiciÃ³n para la animaciÃ³n */
}

.gallery-item:hover .overlay {
    opacity: 1; /* Mostrar overlay al hacer hover */
}

.overlay h3, .overlay p {
    margin: 10px 0;
}
.gallery p {
    font-size: 1.5rem;
    text-align: justify;
    padding-left: 3rem;
    padding-right: 3rem;
}

.gallery p.list-style {
    text-align: left; /* Cambia la alineaciÃ³n a la izquierda */
    list-style-type: disc; /* Opcional: agrega un estilo de lista */
    padding-left: 2rem; /* Ajusta el padding para la lista */
    white-space: pre-line; /* Mantiene los saltos de lÃ­nea */
}

/* ********************************** */
/*               FOOTER               */
/* ********************************** */

.footer {
    background-color: var(--formal-dark-color);
}

.container-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
}

.menu-footer {
    display: grid;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.title-footer {
    font-weight: 600;
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--light-color);
}

.contact-info{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info li {
    list-style: none;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 300;
}

.contact-info li:hover {
    color: var(--light-color);
}

.footer-image {
    width: 150px; /* Ajusta el tamaÃ±o segÃºn lo necesites */
    height: auto;
}

.left-image {
    margin-right: 2rem;
}

.right-image {
    margin-left: 2rem;
}

.social-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.social-icons span {
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons span i {
    color: #fff;
    font-size: 1.2rem;
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #00acee;
}

.youtube {
    background-color: #c4302b;
}

.pinterest {
    background-color: #c8232c;
}

.instagram {
    background: linear-gradient(#405de6,
            #833ab4,
            #c13584,
            #e1306c,
            #fd1d1d,
            #f56040,
            #fcaf45);
}

.social-icons span {
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.3s ease;
}

.social-icons span:hover {
    filter: brightness(1.2); /* Aumenta el brillo en un 20% */
}



/* ********************************** */
/*       MEDIA QUERIES -- 900px       */
/* ********************************** */
@media (max-width: 900px) {
    .hero {
        padding: 2rem;
    }

    .customer-support {
        display: none;
    }

    .content-shopping-cart {
        display: none;
    }

    .navbar {
        padding: 1rem 2rem;
    }

    .navbar .fa-bars {
        display: block;
        color: #fff;
        font-size: 3rem;
    }

    .menu {
        display: none;
    }

    .content-banner {
        max-width: 50rem;
        margin: 0 auto;
        padding: 25rem 0;
    }

    .container-features {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem 2rem;
    }

    .card-feature {
        padding: 2rem;
    }

    .heading-1 {
        font-size: 2.4rem;
    }

    /* Ajuste de logo */
    .logo img {
        width: 200px;
        height: 200px;
    }

    .container-footer {
        display: flex;
        flex-direction: row; /* Asegura que los elementos estÃ©n en fila */
        justify-content: center; /* Centra los elementos horizontalmente */
        align-items: center; /* Alinea los elementos verticalmente */
        text-align: center;
        gap: 2rem; /* Espacio entre elementos */
    }    

    .footer-image {
        width: 120px; /* Reduce el tamaÃ±o de las imÃ¡genes */
    }

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

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

}

/* ********************************** */
/*       MEDIA QUERIES -- 768px       */
/* ********************************** */
@media (max-width: 768px) {
    .hero {
        padding: 2rem;
    }

    .customer-support {
        display: none;
    }

    .content-shopping-cart {
        display: none;
    }

    .navbar {
        padding: 1rem 2rem;
    }

    .navbar .fa-bars {
        display: block;
        color: #fff;
        font-size: 3rem;
    }

    .menu {
        display: none;
    }

    .content-banner {
        max-width: 50rem;
        margin: 0 auto;
        padding: 25rem 0;
    }

    .container-features {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem 2rem;
    }

    .card-feature {
        padding: 2rem;
    }

    .heading-1 {
        font-size: 2.4rem;
    }

    /* Ajuste de logo */
    .logo img {
        width: 200px;
        height: 200px;
    }

    /* Ajuste de contenedor de productos */
    .container-tb {
        font-size: 1.5rem;
        padding: 15px;
    }

    .container-products {
        padding-top: 15px;
        padding-bottom: 20px;
    }

    .menu-footer {
        gap: 2rem;
    }

    .title-footer {
        font-size: 1.8rem;
    }

    .contact-info li {
        font-size: 1.2rem;
    }

    .footer-image {
        display: none;
    }

    .social-icons {
        gap: 1.5rem;
    }

    .social-icons span {
        width: 3.5rem;
        height: 3.5rem;
    }

}

/* ********************************** */
/*       MEDIA QUERIES -- 500px       */
/* ********************************** */
@media (max-width: 500px) {
    .content-banner {
        max-width: 50rem;
        padding: 22rem 0;
    }

    .heading-1 {
        font-size: 2.8rem;
    }

    .logo img {
        width: 150px;
        height: 150px;
    }

    /* Ajuste de contenedor de productos */
    .container-tb {
        font-size: 1.2rem;
        padding: 10px;
    }

    .container-products {
        padding-top: 10px;
        padding-bottom: 15px;
        padding-right: 20px;
    }

    /* TÃ­tulo centrado */
    .title-carta {
        font-size: 1.5em;
    }

    .gallery-item {
        font-family: "Montserrat", serif;
        font-optical-sizing: auto;
        font-weight: weight;
        font-style: normal;
        position: relative;
        margin: 0; /* Eliminar margen entre contenedores */
        width: 400px; /* Aumentar el tamaÃ±o del contenedor */
        padding: 10px;
        height: 300px; /* Aumentar el tamaÃ±o del contenedor */
        overflow: hidden;
    }

    .news-title {
        font-size: 2rem;
    }
    
    /* InformaciÃ³n de la noticia */
    .news-info {
        font-size: 1.4rem;

    }
    
    /* Estilo del botÃ³n de 'Ver mÃ¡s' */
    .read-more-btn {
        font-size: 1.3rem;
    }

    /* Ajuste de menÃº y secciÃ³n */
    .menu-section {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Ajuste de celdas en tablas */
    th,
    td {
        padding: 6px;
        font-size: 0.9rem;
    }

    .contact-info {
        align-items: center;
    }

    .content p {
        font-size: 1.6rem;
    }

    /* Ajustes para .main-content */
    .main-content {
        padding: 10px;
        /* Reduce el espacio para pantallas mÃ¡s pequeÃ±as */
    }

    /* Ajustes para .container-tb */
    .container-tb {
        font-size: 1.2rem;
        /* Reduce el tamaÃ±o del texto */
        transform: translateY(-30px);
        /* Ajusta el desplazamiento vertical */
        padding: 10px;
        /* Reduce el padding */
    }

    /* Ajustes para .container-products */
    .container-products {
        padding: 10px;
        /* Reduce el espaciado interno */
        max-width: 100%;
        /* Se asegura de ocupar el ancho disponible */
        box-shadow: none;
        /* Simplifica la apariencia */
    }

    /* Ajustes para .title-carta */
    .title-carta {
        font-size: 2.5rem;
        /* Reduce el tamaÃ±o del tÃ­tulo */
        margin-bottom: 15px;
        /* Ajusta el margen inferior */
    }

    /* Ajustes para .news-grid */
    .news-grid {
        grid-template-columns: 1fr;
        /* Cambia a una sola columna */
        gap: 30px 0;
        /* Reduce los espacios entre filas */
        padding: 10px;
        /* Reduce el padding general */
    }
    
    .news-grid-2 {
        grid-template-columns: 1fr;
        /* Cambia a una sola columna */
        gap: 30px 0;
        /* Reduce los espacios entre filas */
        padding: 10px;
        /* Reduce el padding general */
    }


    /* Ajustes para .news-card */
    .news-card {
        max-width: 100%;
        /* Asegura que ocupe el ancho disponible */
        padding: 10px;
        /* Reduce el espaciado interno */
    }

    /* Ajustes para .news-img */
    .news-img {
        height: 150px;
        /* Reduce la altura de la imagen */
    }

    .container-footer {
        padding: 1rem; /* Reduce el padding */
        flex-direction: column; /* Asegura que los elementos se acomoden verticalmente si es necesario */
        align-items: center;
        text-align: center;
    }

    .title-footer {
        font-size: 1.6rem;
    }

    .footer-image {
        display: none; /* Oculta las imÃ¡genes en pantallas muy pequeÃ±as */
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icons span {
        width: 3rem;
        height: 3rem;
    }

    .social-icons span i {
        font-size: 1rem;
    }

}</pre></body></html>