/* Footer styles */
.footer {
    background-color: #080808;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 20px 0;
    font-size: 10px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}

.footer-column {
    flex: 1;
    max-width: 360px;
    height: 115px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.8;
    padding: 0;
    margin: 0;
}

.footer-column.two {
    position: relative;
    max-width: 300px;
}

.footer-column.two::before,
.footer-column.two::after {
    content: "";
    position: absolute;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}

.footer-column.two::before {
    left: 0;
}

.footer-column.two::after {
    right: 0;
}

.footer-column.third {
    align-items: flex-end;
}

.footer-title {
    margin: 0;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}

.footer-values {
    color: #FFD700;
    margin: 10px 0;
    font-size: 10px;
}

.footer-description,
.footer-contact {
    margin: 10px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Estilo para enlaces */
.footer-contact a, .footer-description a{
    color: #FFD700; /* Dorado */
    text-decoration: none; /* Sin subrayado */
}

.footer-link:hover {
    text-decoration: underline; /* Subrayado al pasar el mouse */
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 10px;
    color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        max-width: 100%;
        text-align: center;
    }

    .footer-column.two::before,
    .footer-column.two::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer {
        font-size: 9px;
    }

    .footer-title {
        font-size: 10px;
    }

    .footer-links {
        gap: 5px;
    }
}