/* FOOTER COMPONENT - Ubuntu Seguros
   ======================================== */
   
        /* ELEGANT FOOTER DESIGN */
        .footer {
            background: #0F1419;
            color: #ffffff;
            padding: 4rem 0 2rem;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            opacity: 0.6;
        }

        /* FOOTER CONTENT - Improved responsive distribution */
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            align-items: start;
        }

        /* FOOTER SECTIONS */
        .footer-section {
            min-height: auto;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: #E95420;
        }

        /* First section - Company info */
        .footer-section:first-child {
            grid-column: 1;
        }

        .footer-section:first-child p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 2rem;
            font-weight: 400;
            max-width: 90%;
        }

        /* Other sections */
        .footer-section p {
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            font-weight: 400;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 0.3rem 0;
            border-left: 3px solid transparent;
            padding-left: 0.5rem;
        }

        .footer-section a:hover {
            color: #E95420;
            border-left-color: #E95420;
            padding-left: 1rem;
        }

        /* Contact section styling */
        .footer-section:last-of-type p {
            color: rgba(255, 255, 255, 0.85);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* SOCIAL MEDIA - Centered in its own row */
        .social-media {
            grid-column: 1 / -1;
            margin-top: 2rem;
            text-align: center;
        }

        .social-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        .social-link:hover {
            background: #E95420;
            border-color: #E95420;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(233, 84, 32, 0.3);
        }

        /* FOOTER BOTTOM */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 2.5rem;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-weight: 400;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 2.5rem;
            }
            
            .social-media {
                grid-column: 1 / -1;
                margin-top: 2rem;
                text-align: center;
            }

            .footer-section:first-child {
                grid-column: 1;
                grid-row: 1;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.25rem;
            }

            .footer {
                padding: 3.5rem 0 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
                text-align: left;
            }

            .footer-section:first-child {
                grid-column: 1 / -1;
                margin-bottom: 1rem;
            }

            .footer-section:first-child p {
                max-width: 100%;
                margin-bottom: 1.5rem;
            }

            .social-media {
                grid-column: 1 / -1;
                margin-top: 2rem;
                text-align: center;
            }

            .social-links {
                justify-content: center;
                gap: 0.75rem;
            }
        }

        @media (max-width: 640px) {
            .footer {
                padding: 3rem 0 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-section:first-child {
                grid-column: 1;
                margin-bottom: 1.5rem;
            }

            .social-media {
                grid-column: 1;
                margin-top: 1.5rem;
                text-align: center;
            }

            .social-links {
                gap: 0.5rem;
                justify-content: center;
            }

            .social-link {
                width: 40px;
                height: 40px;
            }

            .social-link svg {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .footer {
                padding: 2.5rem 0 1.5rem;
            }

            .footer-content {
                gap: 1.5rem;
            }

            .footer-section h3 {
                font-size: 1.1rem;
                margin-bottom: 1.25rem;
            }

            .footer-section:first-child p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .footer-section p {
                font-size: 0.9rem;
            }

            .social-link {
                width: 38px;
                height: 38px;
            }

            .social-link svg {
                width: 16px;
                height: 16px;
            }

            .social-title {
                font-size: 1.1rem;
            }
        }

        /* Visual improvements */
        .footer-section svg,
        .social-link svg {
            transition: all 0.3s ease;
        }

        .footer-section:hover svg {
            transform: scale(1.1);
        }

        .social-link:hover svg {
            transform: scale(1.1);
        }