/*footer*/

:root {
    --bg-color: #000000;
    --accent-color: #bfff5e;
    /* El verde lima/neón de la imagen */
    --text-color: #ffffff;
    --muted-text: #cccccc;
}

footer {
    padding: 60px 10%;
    background: radial-gradient(circle at 90% 50%, #1a2408 0%, #000000 60%);
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sección Izquierda: Logo e Info */

.brand-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.logo-container {
    text-align: left;
}

.logo-img {
    width: 150px;
    /* Ajustar según tamaño real */
    filter: brightness(0) invert(1);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
    font-size: 1.5rem;
}

.contact-item i {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    padding: 5px;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sección Centro: Enlaces */

.links-title {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.links-list {
    list-style: none;
    padding: 0;
}

.links-list li {
    margin-bottom: 12px;
}

.links-list a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.links-list a:hover {
    color: var(--accent-color);
}

/* Sección Derecha: Newsletter y Find Us */

.newsletter-section h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.subscribe-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.subscribe-box input {
    background: #0a0a0a;
    border: 1px solid #333;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    flex-grow: 1;
    font-size: 0.8rem;
}

.btn-subscribe {
    background-color: var(--accent-color);
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons i {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.find-us-section h2 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.locations {
    color: var(--muted-text);
    line-height: 1.8;
    font-size: 1.5rem;
}

/* Footer Inferior */

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* footer end */