:root {
    --yellow: #f7b835;
    --yellowHover:#FFD700;
    --brown: #473108;
    --brownLight: #4A4A4A;
    --brownPatel:#e8e0d4;
    --red:#E91E63;
    --redHover:#C2185B;
    --white:#ffffff;
}

body {
    color: var(--brown);
    line-height: 1.6;
}

/* Footer */
/* Estilos generales del footer */
footer {
    background-color: var(--yellow); /* Color de fondo oscuro */
    color: #FFFFFF; /* Texto claro */
    padding: 30px 0;
    font-family: Arial, sans-serif;
}

/* Contenedor principal */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 0 20px;
}

/* Logo */
.footer-logo img {
    width: 120px;
    height: auto;
}

/* Menú */
.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu ul li a {
    color: var(--brown);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease-in-out;
}

.footer-menu ul li a:hover {
    color: var(--red); /* Color al pasar el mouse */
}

/* Contacto */
.footer-contact p {
    margin: 5px 0;
    font-size: 14px;
    color:var(--brown)
}

.footer-contact i {
    margin-right: 8px;
}

/* Separador */
.footer-separator {
    width: 80%;
    height: 2px;
    background-color: var(--brown); /* Verde claro */
    margin: 20px auto;
    opacity: 0.7;
}

/* Redes sociales */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.footer-social p {
    font-size: 16px;
    font-weight: bold;
    color:var(--brown);
    margin: 0;
}

/* Íconos de redes con fondo opaco */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(71, 49, 8, 0.2); /* Blanco con opacidad */
    border-radius: 10px; /* Esquinas redondeadas */
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.4); /* Más visible en hover */
    transform: scale(1.1);
    color: var(--brown);
}

/* Responsive Design */
@media (min-width: 768px) {
    /* Contenedor del footer */
    /* Contenedor del footer */
    /* Contenedor del footer */

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Menú en dos columnas */
    .footer-menu ul {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 15px;
    }

    .footer-social {
        gap: 10px;
        justify-content: center;
    }
}