/* Footer */

.text-justify {
    text-align: justify;
}

/* Variables */
:root {
    --footer-bg: #1a1a1a;
    --footer-text: #f5f5f5;
    --footer-secondary: #a0a0a0;
    --accent-color: #d4af37;
    --transition: all 0.3s ease;
}

/* Estilos base del footer */
.site-footer {
    background-color: var(--footer-bg);
    padding: 4rem 0 2rem;
    color: var(--footer-text);
    font-family: 'Raleway', sans-serif;
    width: 100%;
    max-width: 100%;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.site-footer .col-md-6 {
    flex: 0 0 48%;
    max-width: 48%;
}

/* Ajuste de textos */
.site-footer p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.text-justify {
    text-align: justify;
    max-width: 100%;
    margin-right: 2rem;
}

/* Estilos responsivos */
@media (max-width: 767px) {
    .site-footer .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .site-footer p,
    .text-justify {
        margin-right: 0;
        text-align: center;
    }

    .site-footer .container {
        padding: 0 1rem;
    }
}

.site-footer hr {
    border-color: var(--footer-secondary);
    opacity: 0.2;
    margin: 2rem 0;
}

/* Títulos del footer */
.site-footer h6 {
    color: var(--footer-text);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.site-footer h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Enlaces del footer */
.site-footer a {
    color: var(--footer-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.site-footer a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Lista de enlaces */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: 0.5rem 0;
}

/* Iconos sociales */
.social-icons {
    display: flex;
    gap: 1rem;
    list-style: none;  /* Elimina los puntos de la lista */
    padding: 0;        /* Elimina el padding por defecto */
    margin: 0;         /* Elimina el margen por defecto */
}

.social-icons li {
    margin: 0;         /* Elimina márgenes de los elementos li */
    padding: 0;        /* Elimina padding de los elementos li */
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--footer-bg);
    transform: translateY(-3px);
    padding-left: 0;
}

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

/* Texto de copyright */
.copyright-text {
    color: var(--footer-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.copyright-text a {
    color: var(--accent-color);
}

/* Estilos responsivos */
@media (max-width: 767px) {
    .site-footer {
        padding: 2rem 0;
    }

    .site-footer [class^=col-] {
        margin-bottom: 2rem;
    }

    .site-footer .social-icons,
    .site-footer .copyright-text {
        text-align: center;
        justify-content: center;
    }

    .site-footer h6::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .site-footer h6,
    .footer-links,
    .text-justify {
        text-align: center;
    }
}