        :root {
            --primary-color: #333;
            --accent-color: #0d5c6b;
            --white: #fff;
            --light-text: #777;
            --footer-bg: #ffffff;
            --border-color: #e0e0e0;
        }

        body {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* ESTILOS DEL FOOTER */
        footer {
            background-color: var(--footer-bg);
            padding: 40px 10% 20px 10%;
            border-top: 1px solid var(--border-color);
            color: var(--primary-color);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
        }

        .footer-section h3::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
            margin-top: 8px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            text-decoration: none;
            color: var(--primary-color);
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--accent-color);
        }

        /* Sección Social y Newsletter */
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icons a {
            color: var(--white);
            background-color: var(--accent-color);
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: transform 0.3s ease, opacity 0.3s ease;
            text-decoration: none;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }

        .newsletter-form input {
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            outline: none;
            width: 100%;
        }

        .newsletter-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }

        .newsletter-form button:hover {
            background-color: #0a4a56;
        }

        /* Bottom Bar */

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-direction: column; /* si quieres que quede uno debajo del otro */
            gap: 10px;
        }


        .footer-bottom p {
            color: var(--light-text);
            font-size: 13px;
        }

        .payment-methods {
            display: flex;
            gap: 10px;
            filter: grayscale(100%);
            opacity: 0.6;
        }

        .payment-methods i {
            font-size: 24px;
        }

        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }