@charset "UTF-8";
 /* Banner de cookies principal */
        .cookies-banner {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
            z-index: 999999;
            padding: 25px 20px;
            animation: slideUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-top: 3px solid #58c433;
        }

        .cookies-banner.show {
            display: block;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .cookies-banner__container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 25px;
        }

        .cookies-banner__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #58c433 0%, #45a028 100%);
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(88, 196, 51, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(88, 196, 51, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 20px rgba(88, 196, 51, 0.4);
            }
        }

        .cookies-banner__icon svg {
            width: 35px;
            height: 35px;
            fill: #fff;
        }

        .cookies-banner__content {
            flex: 1;
            min-width: 300px;
        }

        .cookies-banner__title {
            font-size: 1.4em;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cookies-banner__badge {
            background: linear-gradient(135deg, #58c433 0%, #45a028 100%);
            color: white;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.5em;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .cookies-banner__text {
            font-size: 1em;
            color: #5a6c7d;
            margin: 0;
            line-height: 1.6;
        }

        .cookies-banner__text strong {
            color: #2c3e50;
            font-weight: 600;
        }

        .cookies-banner__text a {
            color: #58c433;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .cookies-banner__text a:hover {
            border-bottom-color: #58c433;
        }

        .cookies-banner__buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cookies-banner__button {
            padding: 14px 28px;
            font-size: 1em;
            font-weight: 600;
            border: 2px solid transparent;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .cookies-banner__button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cookies-banner__button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cookies-banner__button--accept {
            background: linear-gradient(135deg, #58c433 0%, #45a028 100%);
            color: #fff;
            box-shadow: 0 4px 15px rgba(88, 196, 51, 0.3);
        }

        .cookies-banner__button--accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(88, 196, 51, 0.4);
        }

        .cookies-banner__button--accept:active {
            transform: translateY(0);
        }

        .cookies-banner__button--info {
            background-color: transparent;
            color: #5a6c7d;
            border-color: #d1d8e0;
        }

        .cookies-banner__button--info:hover {
            background-color: #f8f9fa;
            border-color: #58c433;
            color: #58c433;
            transform: translateY(-2px);
        }

        /* Botón flotante mejorado */
        .cookies-float-button {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #58c433 0%, #45a028 100%);
            border-radius: 50%;
            box-shadow: 0 6px 20px rgba(88, 196, 51, 0.4);
            cursor: pointer;
            z-index: 999998;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 3px solid #fff;
        }

        .cookies-float-button.show {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: floatIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        @keyframes floatIn {
            from {
                transform: scale(0) rotate(-180deg);
                opacity: 0;
            }
            to {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
        }

        .cookies-float-button:hover {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 8px 25px rgba(88, 196, 51, 0.5);
        }

        .cookies-float-button svg {
            width: 32px;
            height: 32px;
            fill: #fff;
        }

        /* Modal mejorado */
        .cookies-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 1000000;
            overflow-y: auto;
            animation: fadeIn 0.3s ease;
        }

        .cookies-modal.show {
            display: flex !important;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .cookies-modal__content {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 16px;
            max-width: 650px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100px) scale(0.8);
                opacity: 0;
            }
            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .cookies-modal__header {
            padding: 25px;
            border-bottom: 2px solid #e9ecef;
            position: relative;
            background: linear-gradient(135deg, #58c433 0%, #45a028 100%);
            border-radius: 16px 16px 0 0;
        }

        .cookies-modal__title {
            font-size: 1.6em;
            font-weight: 700;
            color: #fff;
            margin: 0;
            padding-right: 40px;
        }

        .cookies-modal__close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            font-size: 1.5em;
            cursor: pointer;
            color: #fff;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            font-weight: 300;
        }

        .cookies-modal__close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .cookies-modal__body {
            padding: 25px;
        }

        .cookies-modal__intro {
            background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
            border-left: 4px solid #58c433;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 25px;
        }

        .cookies-modal__intro-icon {
            display: inline-block;
            margin-right: 8px;
            font-size: 1.2em;
        }

        .cookies-modal__description {
            font-size: 1em;
            color: #2c3e50;
            line-height: 1.7;
            margin: 0;
        }

        .cookies-modal__description strong {
            color: #58c433;
            font-weight: 700;
        }

        .cookies-category {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            background-color: #fff;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cookies-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #58c433 0%, #45a028 100%);
            transition: width 0.3s ease;
        }

        .cookies-category:hover {
            border-color: #58c433;
            box-shadow: 0 5px 15px rgba(88, 196, 51, 0.1);
        }

        .cookies-category:hover::before {
            width: 6px;
        }

        .cookies-category__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .cookies-category__title {
            font-size: 1.2em;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cookies-category__icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cookies-category__badge {
            background: linear-gradient(135deg, #58c433 0%, #45a028 100%);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.7em;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(88, 196, 51, 0.3);
        }

        .cookies-category__description {
            font-size: 0.95em;
            color: #5a6c7d;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .cookies-category__list {
            margin: 12px 0 0 0;
            padding-left: 25px;
        }

        .cookies-category__list li {
            font-size: 0.9em;
            color: #5a6c7d;
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .cookies-category__list li strong {
            color: #2c3e50;
        }

        .cookies-category--negative {
            background: linear-gradient(135deg, #fff5f5 0%, #fff8f8 100%);
            border-color: #fde2e4;
        }

        .cookies-category--negative::before {
            background: linear-gradient(180deg, #e74c3c 0%, #c0392b 100%);
        }

        .cookies-category--negative:hover {
            border-color: #e74c3c;
        }

        .cookies-modal__footer {
            padding: 20px 25px;
            border-top: 2px solid #e9ecef;
            display: flex;
            gap: 12px;
            justify-content: flex-end;
            background-color: #f8f9fa;
            border-radius: 0 0 16px 16px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cookies-banner__container {
                flex-direction: column;
                text-align: center;
            }

            .cookies-banner__icon {
                margin: 0 auto;
            }

            .cookies-banner__title {
                justify-content: center;
            }

            .cookies-banner__buttons {
                width: 100%;
                flex-direction: column;
            }

            .cookies-banner__button {
                width: 100%;
                text-align: center;
            }

            .cookies-float-button {
                bottom: 15px;
                right: 15px;
                width: 55px;
                height: 55px;
            }

            .cookies-float-button svg {
                width: 28px;
                height: 28px;
            }

            .cookies-modal__content {
                width: 95%;
                margin: 10px;
            }

            .cookies-modal__footer {
                flex-direction: column;
            }

            .cookies-modal__footer button {
                width: 100%;
            }
        }

        /* Mejora de accesibilidad */
        .cookies-banner__button:focus,
        .cookies-float-button:focus,
        .cookies-modal__close:focus {
            outline: 3px solid #58c433;
            outline-offset: 3px;
        }

