        /* Variables globales */
        :root {
            --footer-background: #333;
            --footer-text: #fff;
            --footer-input-background: #292524;
            --footer-input-text: #ffffff;
            --subscribe-btn-background: #ffffff;
            --subscribe-btn-text: #000000;
            --subscribe-btn-hover-text: #fff;
            --divider-color: #555;
        }
    
        /* Estilos globales */
        body, html {
            margin: 0;
            padding: 0;
        }
    
        /* Estilos globales del footer */
        .footer {
            background-color: var(--footer-background);
            color: var(--footer-text);
            padding: 60px 20px;
            font-family: Arial, sans-serif;
            width: 100%; 
            box-sizing: border-box; 
        }
    
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
    
        .footer-left ul {
            list-style: none;
            padding: 0;
        }
    
        .footer-left li {
            margin-bottom: 10px;
        }
    
        .footer-left a {
            color: var(--footer-text);
            text-decoration: none;
        }
    
        .footer-left a:hover {
            text-decoration: underline;
        }
    
        .footer-center {
            text-align: left;
        }
    
        .footer-center h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
        }
    
        .social-icons a {
            margin: 0 10px;
        }
    
        .social-icons img {
            width: 30px;
            height: 30px;
        }
    
        .footer-right {
            text-align: right;
        }
    
        .footer-right p {
            margin-bottom: 10px;
        }
    
        .newsletter-form {
            display: flex;
            align-items: center;
        }
    
        .iemailras-asmoas {
            width: fit-content;
            height: 45px;
            border-radius: 20px;
            padding: 5px;
            box-sizing: content-box;
            display: flex;
            align-items: center;
            background-color: var(--footer-input-background);
        }
    
        .ssakico {
            width: 30px;
            fill: var(--footer-input-text);
            margin-left: 8px;
            transition: all 0.3s;
        }
    
        .tara {
            max-width: 170px;
            height: 100%;
            border: none;
            outline: none;
            padding-left: 15px;
            background-color: var(--footer-input-background);
            color: var(--footer-input-text);
            font-size: 1em;
        }
    
        .tara:-webkit-autofill {
            -webkit-box-shadow: 0 0 0px 1000px var(--footer-input-background) inset;
            -webkit-text-fill-color: var(--footer-input-text);
        }
    
        .Subscribe-btn {
            height: 100%;
            width: 95px;
            border: none;
            border-radius: 15px;
            color: var(--subscribe-btn-text);
            cursor: pointer;
            background-color: var(--subscribe-btn-background);
            font-weight: 500;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.3s;
        }
    
        .arrow {
            position: absolute;
            margin-right: 150px;
            transition: all 0.3s;
        }
    
        .iemailras-asmoas:active .ssakico {
            transform: scale(1.3);
        }
    
        .Subscribe-btn:hover {
            color: var(--subscribe-btn-hover-text);
        }
    
        .Subscribe-btn:hover .arrow {
            margin-right: 0;
            animation: jello-vertical 0.9s both;
            transform-origin: right;
        }
    
        @keyframes jello-vertical {
            0% {
                transform: scale3d(1, 1, 1);
            }
            30% {
                transform: scale3d(0.75, 1.25, 1);
            }
            40% {
                transform: scale3d(1.25, 0.75, 1);
            }
            50% {
                transform: scale3d(0.85, 1.15, 1);
            }
            65% {
                transform: scale3d(1.05, 0.95, 1);
            }
            75% {
                transform: scale3d(0.95, 1.05, 1);
            }
            100% {
                transform: scale3d(1, 1, 1);
            }
        }
    
        .Subscribe-btn:active {
            transform: scale(0.9);
        }
    
        .footer-right .social-icons {
            margin-top: 10px; 
        }
    
        .footer-divider {
            border: 1px solid var(--divider-color);
            margin-bottom: 20px;
        }
    
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
    
        .footer-bottom .left,
        .footer-bottom .right {
            margin-bottom: 10px;
        }
    
        .footer-bottom p {
            margin: 0;
            font-size: 0.9em;
        }

        .parent {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .child {
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            transform-style: preserve-3d;
            transition: all 0.5s ease-in-out;
            border-radius: 50%;
            margin: 0 5px;
        }

        .child:hover {
            background-color: white;
            background-position: -100px 100px, -100px 100px;
            transform: rotate3d(0.5, 1, 0, 30deg);
            transform: perspective(180px) rotateX(60deg) translateY(2px);
            box-shadow: 0px 10px 10px rgb(1, 49, 182);
        }

        .cam {
            border: none;
            background-color: transparent;
            font-size: 20px;
        }

        .cam:hover {
            width: inherit;
            height: inherit;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translate3d(0px, 0px, 15px) perspective(180px) rotateX(-35deg) translateY(2px);
            border-radius: 50%;
        }
    
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: left;
            }
    
            .footer-right {
                text-align: left;
                margin-top: 20px;
            }
    
            .newsletter-form {
                justify-content: center;
                flex-wrap: wrap;
            }
    
            .newsletter-form input[type="email"] {
                margin-bottom: 10px;
                width: 100%;
            }
    
            .newsletter-form button {
                width: 100%;
            }
    
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
