    /* Footer */
        .footer {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 70px 0 0;
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 1fr 2fr;
            gap: 50px;
            padding-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        /* Columna 1 - Información */
        .footer-info p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }
        
        .footer-contact {
            margin-top: 25px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .contact-item i {
            margin-right: 12px;
            color: var(--accent-color);
            margin-top: 3px;
            width: 16px;
        }
        
        /* Columna 2 - Enlaces rápidos */
        .links{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 50px;
        }
        @media (max-width:768px){
            .links{
                gap: 0;
            }
            .footer-links .links-1{
                flex: 1;
            }
            .footer-links .links-2{
                flex: 2;
            }
        }

        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:before {
            content: '▸';
            margin-right: 10px;
            color: var(--accent-color);
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }
        
        .footer-links a:hover:before {
            transform: translateX(3px);
        }
        
        /* Columna 3 - Boletín informativo */
        .newsletter p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .newsletter-input {
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            color: var(--secondary-color);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .newsletter-btn {
            background: var(--accent-color);
            color: var(--secondary-color);
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }
        
        .newsletter-btn:hover {
            background: #9d8261;
            transform: translateY(-2px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }
        
        /* Footer inferior */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        .legal-links {
            display: flex;
            gap: 25px;
        }
        
        .legal-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .legal-links a:hover {
            color: var(--secondary-color);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .footer {
                padding: 50px 0 0;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .legal-links {
                gap: 15px;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
        
        @media (max-width: 480px) {
            .footer {
                padding: 40px 0 0;
            }
            
            .footer-main {
                gap: 30px;
            }
            
            .footer-column h3 {
                font-size: 1.2rem;
                margin-bottom: 20px;
            }
            
            .newsletter-form {
                gap: 10px;
            }
            
            .social-links {
                justify-content: center;
            }
        }
