@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

:root {
    /* Paleta principal */
    --color-primario: #F18500;
    --color-secundario: #5A8438;
    --color-acento: #9D68B0;

    /* Neutros */
    --color-fondo: #F5EBE1;
    --color-texto: #262626;

    /* Tipografías */
    --fuente-principal: "Poppins", sans-serif;
    --fuente-secundaria: "Staatliches", sans-serif;
    --fuente-monospace: 'Courier New', monospace;

    /* Tamaños */
    --tamaño-base: 1rem;
    --titulo-enorme: 3rem;
    --título-grande: 2rem;
    --subtítulo: 1.5rem;
    --texto-pequeño: 0.875rem;
}

html {
    scroll-behavior: smooth;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}


body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 10rem;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.6s ease;
}


header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.966);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    /* padding: 0.8rem 2rem; */
}

.nav_container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}


.logo {
    color: #000000;
    font-size: 1.5rem;
    text-decoration: none;
    margin-right: 5rem;
}

.logo img {
    width: 80px;
}

.nav_links {
    align-items: center;
    display: flex;
    gap: 2rem;
    list-style-type: none;
    transition: all 0.3s ease;
}

.nav_links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav_links li a:hover {
    color: var(--color-primario);
}

.menu-btn {
    color: #000;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    align-items: center;
    display: none;
}

.nav_links .btn-contacto {
    background-color: #e86428;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    color: #fff;
    /* margin-left: 4rem; */
}


.nav_links .btn-contacto:hover {
    color: #fff;
}

/* ADAPTACION DEL MENU A MOBILE */

@media (max-width: 888px) {

    header {
        padding: 1rem 4rem;
    }

    .menu-btn {
        display: block;
    }

    .nav_container {
        justify-content: space-between;
    }

    .nav_links {
        position: absolute;
        top: 100%;
        /* colocar justo debajo del header (no usar px) */
        left: 0;
        width: 100%;
        background: #ffff;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        clip-path: circle(0px at 90% -10%);
        pointer-events: none;
        transition: clip-path 0.8s ease-in-out;
        will-change: clip-path;
        z-index: 1100;
        /* encima del header y contenido */

    }

    .nav_links.active {
        clip-path: circle(1000px at 90% -10%);
        pointer-events: auto;
    }

    .nav_links li {
        opacity: 0;
        transform: translateY(-20px);
        transition: transform 0.35s ease, opacity 0.35s ease;
        transition-delay: 0s;
        /* reset por defecto para la salida */
    }

    .nav_links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* aplicar delays solo cuando está activo (entrada escalonada) */
    .nav_links.active li:nth-child(1) {
        transition-delay: 0.2s;
    }

    .nav_links.active li:nth-child(2) {
        transition-delay: 0.3s;
    }

    .nav_links.active li:nth-child(3) {
        transition-delay: 0.4s;
    }

    .nav_links.active li:nth-child(4) {
        transition-delay: 0.5s;
    }

    .nav_links.active li:nth-child(5) {
        transition-delay: 0.7s;
    }



}


/* Banner estilo hero */

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background: url(../img/galerias.jpg) center /cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;

}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 5%, 0.61);
    /* tono negro con opacidad */
    z-index: 1;
}


.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
}

.hero h1 {
    font-size: var(--titulo-enorme);
    font-family: var(--fuente-principal);
}

.hero p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.hero .btn {
    background: #5A8438;
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1.3rem;
    text-decoration: none;
    border-radius: 4px;
}


/* =============   Banner /Horario =============  */

.banner-horarios {
    background: linear-gradient(to right, var(--color-secundario), var(--color-primario) 70%);
    margin-top: 70px;
    color: #fff;
    padding: 2rem 1rem;
}

.banner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1024px; */
    margin: 0 auto;
    gap: 2rem;
}

.flex-title {
    width: 30%;
}

.flex-title h2 {
    font-family: var(--fuente-secundaria);
    font-size: clamp(1.5rem, 4vw, var(--título-grande));
    letter-spacing: 1px;
    margin: 0;
    font-weight: normal;
}

.flex-info {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1.5rem;
    width: 50%;
    border-left: 2px solid white;
    /* height: 150px; */
}

.banner-icon img {
    width: clamp(50px, 10vw, 80px);
    flex-shrink: 0;
}

.schedule-item {
    display: flex;
    flex-direction: column;
}

.schedule-item .day {
    font-weight: bold;
    font-size: 1rem;
}

.schedule-item .hours {
    font-size: 0.95rem;
    opacity: 0.9;
}


/* =============   Eventos  /Seccion  =============  */

.eventos {
    text-align: center;
    padding: 3.7rem 1.25rem;
    overflow: hidden;
}

.eventos-title h1 {
    font-size: 2.5rem;
    font-family: var(--fuente-secundaria);
    font-weight: normal;

}

.eventos-title p {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.eventos-content {
    display: flex;
    gap: 40px;
    text-align: left;
}

.eventos-galeria {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}

.img-evento {
    background: #e0e0e0;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Posicionamiento y Tamaño de las Imágenes */

.caja-1 {
    grid-column: 1;
    grid-row: 1;
    width: 250px;
    height: 250px;
}

.caja-2 {
    grid-column: 1;
    grid-row: 2;
    width: 250px;
    height: 250px;
    margin-left: 30px;
}

.caja-3 {
    grid-column: 2;
    grid-row: 1/3;
    width: 250px;
    height: 250px;
    margin-top: 110px;
}

.eventos-detalles {
    flex: 1.3;
    padding-top: 50px;
    position: relative;
    z-index: 1;
}

.detalles-title {
    color: var(--color-secundario);
    font-size: 1.8em;
    margin-bottom: 20px;
}

.btn-llegar {
    display: inline-block;
    background: #e86428;
    color: #fff;
    padding: 0.5rem 1.3rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 30px;
    transition: 0.3s ease;
}

.btn-llegar:hover {
    background: #d3551b;
    transform: scale(1.05);
}

/* --- Elementos Decorativos (Polígonos de la Derecha) --- */

.eventos-detalles::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -400px;
    /* Mueve hacia la derecha para que solo se vea la esquina */
    width: 250px;
    height: 250px;
    transform: rotate(70deg);
    /* Gira para hacerlo parecer un diamante o polígono */
    background: linear-gradient(135deg, #9D68B0, #10a37e);
    /* Degradado verde */
    z-index: -1;
    /* Mantenlo detrás del contenido */
    border-radius: 5px;
    /* Borde opcional */
}

.eventos-detalles::before {
    content: '';
    position: absolute;
    top: 320px;
    right: -275px;
    /* Mueve hacia la derecha para que solo se vea la esquina */
    width: 120px;
    height: 120px;
    transform: rotate(25deg);
    /* Gira para hacerlo parecer un diamante o polígono */
    background: linear-gradient(135deg, #9D68B0, #10a37e);
    /* Degradado verde */
    z-index: -1;
    /* Mantenlo detrás del contenido */
    border-radius: 5px;
    /* Borde opcional */
}


/* =============   Segunda seccion info-section =============  */

.info-section {
    padding: 80px 20px;
    /* background: #f3f3f3; */
    position: relative;
    margin-bottom: 150px;
}

.info-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.info-texto {
    flex: 1;
    min-width: 500px;
    position: relative;
    z-index: 10;
}

.info-subtitulo {
    font-weight: normal;
    /* color: var(--color-secundario); */
    font-size: 1.2rem;
    margin-bottom: 10px;

}

.info-texto h1 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    margin-bottom: 20px;

}

.info-texto span {
    color: var(--color-secundario);
}

.lista-beneficios {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.lista-beneficios li {
    padding: 8px 0;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
}

.icono-beneficio {
    color: #ff9933;
    font-size: 1.2em;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.lista-beneficios li strong {
    color: #222;
    font-weight: 600;
    /* Un poco más grueso */
}

.info-ilustracion {
    flex: 1;
    text-align: left;
    position: relative;
}

.info-ilustracion img {
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
}

/* Elemento decorativo (triangulo) */

.poligono-decorativo {
    position: absolute;
    bottom: -60px;
    left: -100px;
    width: 0;
    height: 0;
    z-index: 0;
}

.poligono-decorativo::after {
    content: '';
    position: absolute;
    bottom: 48px;
    left: 62px;
    width: 200px;
    height: 230px;
    background: linear-gradient(45deg, #7ec4a3, #a777d1);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    transform: rotate(-67deg);
    z-index: 2;
}

.poligono-decorativo::before {
    content: '';
    position: absolute;
    bottom: 52px;
    left: 184px;
    width: 130px;
    height: 150px;
    background: linear-gradient(45deg, #7ec4a3, #a777d1);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    transform: rotate(-67deg);
    z-index: 1;
}


/* =============   BANNER 2 =============  */

.banner2 {
    height: 400px;
    width: 100%;
    background-image: url(../img/galerias1.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


.banner2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    /* Capa oscura */
    z-index: -1;
}

.banner2_content {
    max-width: 80%;
    padding: 1.5rem;
}

.banner2_content h1 {
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner2_content p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* =============   RED COMERCIAL =============  */


.red_comercial {
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.red_comercial_content {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 100px 0px;

}

.red_comercial_content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-family: var(--fuente-principal);
    text-transform: uppercase;
    /* color: var(--color-primario);    ; */
}

.logos-fila {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    gap: 2rem;
    z-index: 1999;
}

.logos-fila img {
    max-width: 18rem;
    height: auto;
    object-fit: contain;
}

.circulo-morado,
.circulo-verde,
.circulo-naranja {
    position: absolute;
    z-index: 0;
}

.circulo-morado {
    width: 420px;
    top: -190px;
    left: -120px;
}

.circulo-verde {
    width: 250px;
    top: -76px;
    right: -94px;
}

.circulo-naranja {
    width: 300px;
    left: 300px;
    bottom: -160px;
}


/* =============   BANNER 3 =============  */

.banner3 {
    background: linear-gradient(to left, var(--color-secundario) 30%, var(--color-primario) 70%);
    color: #fff;
    padding: 2.5rem;
}

.banner3_content {
    display: flex;
    flex-wrap: wrap;
    /* permite bajar elementos en mobile */
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.banner3_title {
    width: 30%;
}

.banner3_title h1 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    letter-spacing: 1px;
    margin: 0;
}

.banner3_text {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1.5rem;
    width: 50%;
    border-left: 2px solid white;
}

.metricas_item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metricas-caja {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 1rem;
}

.metricas-caja img {
    width: clamp(50px, 10vw, 80px);
    /* íconos adaptables */
}

.metricas-caja .m_texto {
    display: flex;
    flex-direction: column;
}

.metricas-caja .m_texto .m_numero {
    font-weight: 600;
    font-size: 1.2rem;
}


/* =============   Info3 =============  */

.info3 {
    margin: 100px 0;
}

.info3-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    /* permite que elementos bajen en mobile */
}

.info3-ilustracion {
    flex: 1;
    text-align: center;
}

.info3-ilustracion img {
    width: 500px;
    display: block;
    margin: 0 auto;
}

.info3-texto {
    flex: 1.2;
    max-width: 650px;
}

.info3-texto h2,
h3 {
    text-align: left;
    text-transform: capitalize;

}

.info3-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 20px 0;
    line-height: 1.1;
}

.info3-subtitle {
    letter-spacing: 1px;
    color: var(--color-primario);

}

.info3-title span {
    color: var(--color-primario);
}


/* =============   FOOTER =============  */


footer {
    color: #333;
    font-size: 0.9em;
    margin-bottom: 200px;
}

.footer-cta-bar {
    background: #1a2a4b;
    color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 20;
}

.cta-texto h2 {
    font-size: 1.9em;
    margin-bottom: 5px;
}

.cta-texto p {
    font-size: 1em;
}

.cta-boton {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: #000;
    font-weight: 550;
    border: none;
    padding: 0px 50px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 60px 0;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 150px;
}

.footer-col-info {
    flex: 1.5;
    max-width: 300px;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 10px;
}

.footer-descripcion {
    list-style: 1.6;
    color: #666;
}

.footer-col h3 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}


.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #1a2a4b;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.social-icons i {
    font-size: 2em;
    color: var(--color-texto);
    transition: color 0.2s;
}

.social-icons i:hover {
    color: var(--color-primario);
}

/* pantallas mas pequeñas */

@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }

    .hero h1 {
        margin-top: 5rem;
        font-size: 3rem;
    }

    .hero .btn {
        font-size: 0.8rem;
    }

    .flex-title h2 {
        font-size: 2rem;
    }

    .schedule-item .day {
        font-size: 1.1rem;
    }

    .detalles-title {
        font-size: 1.5rem;
    }

    .info-texto h1 {
        font-size: 2rem;
    }

    .red_comercial_content h1 {
        letter-spacing: 2px;
    }

    .banner3_title h1 {
        font-size: 2rem;
    }

    .metricas-caja img {
        width: 50px;
    }

    .info3-title {
        font-size: 2rem;
    }

    .poligono-decorativo {
        bottom: -110px;
    }

    .poligono-decorativo::after {
        bottom: 47px;
        left: 67px;
        width: 180px;
        height: 210px;
    }

    .poligono-decorativo::before {
        width: 110px;
        height: 130px;
    }

    .eventos-detalles::after {
        right: -250px;
        width: 230px;
        height: 230px;
    }

    .eventos-detalles::before {
        right: -147px;
        width: 100px;
        height: 100px;
    }


    .logos-fila img{
        max-width: 13rem;
    }

    .info3-texto p{
        font-size: .9rem;
    }

    .btn-llegar {
        font-size: .9rem;
    }
}

/* Móviles */
@media (max-width: 480px) {

    .container {
        padding: 0 0.5rem;
    }

    .logo img {
        width: 60px;
    }

    header {
        padding: 0.5rem 5rem;
    }

    .nav_links li a {
        font-size: 0.8rem;
    }

    /* Banner Hero */
    .hero {
        height: 70vh;
        padding: 0.5rem;
    }

    .hero-overlay {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero .btn {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    /* Horario*/

    .banner-horarios {
        padding: 1.5rem 1rem;
    }

    .banner-flex {
        justify-content: center;
    }

    .flex-title {
        width: 40%;
        display: flex;
        justify-content: center;

    }

    .flex-title h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .schedule-item .day {
        font-size: 0.95rem;
    }

    .schedule-item .hours {
        font-size: 0.9rem;
    }

    .flex-info {
        flex-direction: column;
        align-items: center;
    }

    .schedule-item {
        margin-bottom: 0.8rem;
        text-align: center;
    }

    /*====  Eventos  ====*/

    .eventos-content {
        flex-direction: column;
    }

    .eventos-galeria {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 1 columna */
        gap: 1rem;
    }

    .eventos-title h1 {
        font-size: 1.8rem;
    }

    .eventos-title p {
        font-size: 0.95rem;
    }

    .eventos-detalles {
        text-align: center;
    }

    .eventos-detalles .detalles-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .eventos-detalles p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .btn-llegar {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }

    .caja-2 {
        margin-left: 0;
    }

    .caja-3 {
        margin-top: 0px;
    }

    .eventos-detalles::after,
    .eventos-detalles::before {
        display: none;
    }

    /*====  info2  ====*/

    .info-section {
        padding: 50px 15px;
    }

    .info-content {
        flex-direction: column;
    }

    .info-texto {
        min-width: auto;
    }

    .info-texto p {
        font-size: 0.8rem;
    }

    .info-texto h1 {
        font-size: 1.5rem;
    }

    .info-subtitulo {
        font-size: 1rem;
    }

    .lista-beneficios li {
        gap: 5px;
    }

    .icono-beneficio {
        margin-bottom: 5px;
    }

    .info-ilustracion img {
        max-width: 300px;
    }

    .poligono-decorativo {
        display: none;
        /* opcional, para simplificar en mobile */
    }

    /*====  Banner2  ====*/

    .banner2_content h1 {
        font-size: 2rem;
        font-weight: 600;
    }

    .banner2_content p {
        font-size: 1rem;
    }

    /*====  Red Comercial  ====*/

    .red_comercial_content h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;

    }

    .logos-fila {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .logos-fila img {
        max-width: 100px;
    }

    .circulo-morado {
        width: 240px;
        top: -120px;
    }

    .circulo-verde {
        width: 130px;
        top: 39px;
        right: -70px;
    }

    .circulo-naranja {
        width: 150px;
        left: 100px;
        bottom: -80px;
    }

    /*====  Banner3  ====*/

    .banner3 {
        padding: 1.5rem;
    }

    .banner3_content {
        display: flex;
        flex-direction: column;
    }


    .banner3_title {
        width: 100%;
        text-align: center;
    }

    .banner3_title h1 {
        font-size: 1.5rem;

    }

    .banner3_text {
        width: 100%;
        border-top: 2px solid white;
        border-left: none;
        padding: 1rem 0
    }

    .metricas-caja img {
        width: 45px;
    }

    .metricas-caja .m_texto {
        font-size: 0.9rem;
    }


    /*====  info3  ====*/

    .info3 {
        margin: 50px 0;
    }

    .info3-title {
        font-size: 1.6rem;
    }

    .info3-subtitle {
        font-size: 0.9rem;
    }

    .info3-ilustracion img {
        max-width: 300px;
    }

    .info3-texto {
        max-width: 100%;
        padding: 0 1rem;
    }

    .info3-texto p {
        font-size: 0.8rem;
        text-align: justify;
    }

    .btn-llegar {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }


    /*====  Footer  ====*/

    footer {
        padding: 0 1rem;
    }

    .footer-cta-bar {
        padding: 1.7rem 2.5rem;
    }

    .cta-texto h2 {
        font-size: 1.3rem;
    }

    .cta-texto p {
        font-size: 0.8em;
    }

    .cta-boton {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        padding: 50px 0;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col-info {
        max-width: 100%;
        text-align: center;
    }

    .footer-col h3 {
        font-size: 1rem;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icons i {
        font-size: 1.5em;
    }


}