 /* Footer azul */
        .footer-blue {
            background: #0033ff;
            color: white;
            padding: 60px 80px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Coluna esquerda - Logo e info */
        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .footer-logo {
            width: 250px;
            margin-bottom: 20px;
        }

        .company-name {
            font-size: 2em;
            font-weight: 700;
            margin-bottom: 10px;
            font-family: 'Alibaba Sans', sans-serif;
        }

        .company-info {
            font-size: 1.1em;
            line-height: 1.6;
            font-weight: 400;
            margin-bottom: 30px;
            font-family: 'Alibaba Sans', sans-serif;
        }

        .about-text {
            font-size: 1.1em;
            line-height: 1.8;
            font-weight: 400;
            margin-bottom: 20px;
            font-family: 'Alibaba Sans', sans-serif;
        }

        .tagline {
            font-size: 1.3em;
            font-family: 'Alibaba Sans', sans-serif;
            font-weight: 700;
            margin-top: 20px;
        }

        /* Coluna direita - Redes sociais */
        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            font-family: 'Alibaba Sans', sans-serif;
            gap: 20px;
        }

        .social-title {
            font-size: 1.3em;
            font-weight: 300;
            margin-bottom: 10px;
        }

        .social-content {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 2em;
            font-weight: 500;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: white;
            color: #0033ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            background: #ff6600;
            color: white;
            transform: translateY(-5px);
        }

        /* Footer laranja */
        .footer-orange {
            background: #ff6600;
            color: white;
            padding: 25px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            font-size: 1.1em;
            font-weight: 500;
            font-family: 'Alibaba Sans', sans-serif;
        }

        .policy-link {
            color: white;
            text-decoration: none;
            font-size: 1.1em;
            font-weight: 500;
            transition: all 0.3s ease;
            font-family: 'Alibaba Sans', sans-serif;
        }

        .policy-link:hover {
            text-decoration: underline;
            opacity: 0.9;
        }

        /* Responsividade */
        @media (max-width: 1200px) {
            .footer-blue {
                padding: 50px 60px;
            }

            .footer-orange {
                padding: 20px 60px;
            }

            .footer-logo {
                width: 220px;
            }

            .company-name {
                font-size: 1.8em;
            }
        }

        @media (max-width: 900px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-right {
                align-items: flex-start;
            }

            .footer-blue {
                padding: 40px 40px;
            }

            .footer-orange {
                padding: 20px 40px;
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .footer-blue {
                padding: 35px 30px;
            }

            .footer-orange {
                padding: 18px 30px;
            }

            .footer-logo {
                width: 200px;
            }

            .company-name {
                font-size: 1.6em;
            }

            .company-info,
            .about-text {
                font-size: 1em;
            }

            .tagline {
                font-size: 1.2em;
            }

            .social-title {
                font-size: 1.2em;
            }

            .social-content {
                font-size: 1.8em;
            }

            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .copyright,
            .policy-link {
                font-size: 1em;
            }
        }

        @media (max-width: 600px) {
            .footer-blue {
                padding: 30px 20px;
            }

            .footer-orange {
                padding: 15px 20px;
            }

            .footer-logo {
                width: 180px;
            }

            .company-name {
                font-size: 1.5em;
            }

            .company-info,
            .about-text {
                font-size: 0.95em;
                line-height: 1.6;
            }

            .tagline {
                font-size: 1.1em;
            }

            .social-title {
                font-size: 1.1em;
            }

            .social-content {
                font-size: 1.6em;
                flex-wrap: wrap;
            }

            .social-icon {
                width: 38px;
                height: 38px;
                font-size: 18px;
            }

            .copyright,
            .policy-link {
                font-size: 0.95em;
            }
        }

        @media (max-width: 480px) {
            .footer-blue {
                padding: 25px 15px;
            }

            .footer-orange {
                padding: 12px 15px;
            }

            .footer-logo {
                width: 160px;
                margin-bottom: 15px;
            }

            .company-name {
                font-size: 1.4em;
            }

            .company-info,
            .about-text {
                font-size: 0.9em;
            }

            .tagline {
                font-size: 1em;
                margin-top: 15px;
            }

            .social-title {
                font-size: 1em;
            }

            .social-content {
                font-size: 1.4em;
            }

            .social-icon {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .copyright,
            .policy-link {
                font-size: 0.9em;
            }
        }

        @media (max-width: 360px) {
            .footer-logo {
                width: 150px;
            }

            .company-name {
                font-size: 1.3em;
            }

            .company-info,
            .about-text {
                font-size: 0.85em;
            }

            .tagline {
                font-size: 0.95em;
            }

            .social-content {
                font-size: 1.3em;
            }

            .copyright,
            .policy-link {
                font-size: 0.85em;
            }
        }