        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .content {
            flex: 1;
            padding: 40px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        /* FOOTER ESTILOS */
        .main-footer {
            background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
            color: white;
            padding: 40px 0 0;
            position: relative;
            overflow: hidden;
        }
        
        /* Efecto de hojas decorativas en el fondo */
        .main-footer::before {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%232e7d32" d="M50,5 C70,5 85,25 85,50 C85,75 70,95 50,95 C30,95 15,75 15,50 C15,25 30,5 50,5 Z" /></svg>') no-repeat;
            top: -150px;
            left: -150px;
            opacity: 0.15;
            animation: floatLeaf 40s infinite linear;
        }
        
        .main-footer::after {
            content: "";
            position: absolute;
            width: 250px;
            height: 250px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%231b5e20" d="M50,10 C65,10 75,30 75,50 C75,70 65,90 50,90 C35,90 25,70 25,50 C25,30 35,10 50,10 Z" /></svg>') no-repeat;
            bottom: -100px;
            right: -100px;
            opacity: 0.15;
            animation: floatLeaf 30s infinite linear reverse;
        }
        
        @keyframes floatLeaf {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .footer-content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-section {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .footer-brand {
            animation-delay: 0.1s;
        }
        
        .footer-links {
            animation-delay: 0.2s;
        }
        
        .footer-info {
            animation-delay: 0.3s;
        }
        
        .footer-social {
            animation-delay: 0.4s;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .footer-logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease;
            margin-bottom: 15px;
        }
        
        .footer-logo-link:hover {
            transform: translateY(-3px);
        }
        
        .footer-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
            animation: gentlePulse 8s infinite ease-in-out;
        }
        
        @keyframes gentlePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .footer-brand-text {
            display: flex;
            flex-direction: column;
            margin-left: 15px;
            text-align: left;
        }
        
        .footer-brand-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .footer-brand-slogan {
            font-size: 0.85rem;
            color: #c8e6c9;
            font-style: italic;
            margin-top: 4px;
            letter-spacing: 0.5px;
        }
        
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffffff;
            position: relative;
            padding-bottom: 10px;
            display: inline-block;
        }
        
        .footer-section h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(to right, #81c784, #c8e6c9);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .footer-section:hover h3::after {
            width: 60px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 12px;
        }
        
        .footer-section ul li a {
            color: #e8f5e9;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            display: inline-block;
            position: relative;
        }
        
        .footer-section ul li a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: #ffffff;
            transition: width 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: #ffffff;
            transform: translateX(5px);
        }
        
        .footer-section ul li a:hover::after {
            width: 100%;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-icons a::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #4caf50, #81c784);
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: -1;
        }
        
        .social-icons a:hover::before {
            transform: translateY(0);
        }
        
        .social-icons a:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .contact-email {
            color: #c8e6c9;
            font-size: 1rem;
            margin-top: 10px;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .contact-email:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            margin-top: 50px;
            padding: 20px 0;
            background: rgba(0, 0, 0, 0.2);
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .copyright-desktop {
            color: #c8e6c9;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .footer-content-wrapper {
                gap: 30px;
                padding: 0 20px;
            }
            
            .footer-section h3 {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .main-footer {
                padding: 30px 0 0;
            }
            
            .footer-content-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .footer-logo-link {
                justify-content: center;
            }
            
            .footer-brand-text {
                text-align: center;
                margin-left: 0;
                margin-top: 10px;
            }
            
            .footer-section h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-icons {
                justify-content: center;
            }
            
            .footer-section ul li a:hover {
                transform: translateY(-3px);
            }
        }