        .footer {
            background-color: #0A0A0A;
            color: #FFFFFF;
            font-family: 'Gothic';
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            text-align: justify;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            color: #F4F2A5;
            font-weight: bold;
            border-bottom: 2px solid rgba(244, 242, 165, 0.5);
            padding-bottom: 5px;
            text-align: center;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .footer-column h4:hover {
            color: #FFFFFF;
            transform: scale(1.1);
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            position: relative;
            margin-bottom: 10px;
            padding-left: 25px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-column ul li::before {
            content: "💎";
            position: absolute;
            left: 0;
            top: 0;
            color: #F4F2A5;
            font-size: 12px;
        }

        .footer-column ul li a {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
        }

        .footer-column ul li a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background-color: #F4F2A5;
            transition: width 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #F4F2A5;
        }

        .footer-column ul li a:hover::after {
            width: 100%;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 10px;
            margin-top: 0 auto;
        }

        .footer-contact img {
            max-width: 120px;
            transition: transform 0.3s ease;
        }

        .footer-contact img:hover {
            transform: scale(1.1);
        }

        .footer-contact p {
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        .footer-contact p a {
            color: #F4F2A5;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact p a:hover {
            color: #FFFFFF;
            font-weight: bold;
        }

        .footer-bottom {
            background-color: #0A0A0A;
            text-align: center;
            font-size: 14px;
            color: #F4F2A5;
            font-weight: bold;
            padding: 10px 0;
            border-top: 1px solid rgba(244, 242, 165, 0.5);
            margin-top: 20px;
        }

        .footer-bottom p {
            margin: 0;
            font-family: 'Gothic';
            line-height: 1.5;
            color: #F4F2A5;
            font-weight: bold;
        }

        .footer-bottom p a {
            color: #F4F2A5;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom p a:hover {
            color: #ffffff;
        }

        @media (min-width: 769px) {
            .footer-container {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr;
                gap: 80px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .footer-contact {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                text-align: center;
                gap: 10px;
                margin: 0;
            }

            .footer-logo {
                max-width: 120px;
                margin-bottom: 10px;
                margin-top: 60px;
            }

            .footer-contact p {
                margin: 0;
                font-size: 14px;
                text-align: center;
            }

            .footer-contact a {
                color: #F4F2A5;
                text-decoration: none;
                transition: color 0.3s ease;
            }

            .footer-contact a:hover {
                color: #ffffff;
            }

            .footer-column {
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                min-height: 100%;
            }
        }

        @media (max-width: 768px) {
            .footer-column {
                flex: 1 0 33%;
                text-align: justify;
                min-width: 150px;
            }

            .footer-column:nth-child(1) {
                flex: 1 1 100%;
                margin-bottom: 10px;
            }

            .footer-logo {
                margin: 0 auto 10px;
                margin-top: 60px;
            }

            .footer-container {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
                max-width: 90%;
            }

            .footer-contact {
                margin: 0 auto;
                justify-content: center;
            }
        }

        /* === Landscape Móvil: 3 columnas === */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .footer-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
    text-align: left;
  }

  .column-gaia {
    grid-column: 1;
  }

  .column-links {
    grid-column: 2;
  }

  .column-logo {
    grid-column: 3;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center !important;
    transform: translateY(-100px);
    transition: transform 0.4s ease-in-out;
  }

  .footer-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
  }

  .footer-contact-info {
    display: block !important;
    margin-top: 10px;
  }

  .footer-contact-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 4px 0;
  }

  .footer-contact-info p a {
    color: #F4F2A5;
    text-decoration: none;
  }

  .footer-contact-info p a:hover {
    color: #ffffff;
  }
}
