/* Extraido de application/views/returns_policy.php.
   Estaba en linea, asi que viajaba en cada visita sin poder cachearse. */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #f8fafc;
            color: #1e293b;
            -webkit-font-smoothing: antialiased;
        }

        /* --- Top bar --- */
        .legal-topbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            padding: 0 24px;
            height: 64px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .legal-topbar-logo { height: 32px; }
        .legal-topbar-back {
            display: inline-flex; align-items: center; gap: 6px;
            font-size: 0.875rem; font-weight: 600; color: #0071d8;
            text-decoration: none; transition: gap 0.25s ease;
        }
        .legal-topbar-back:hover { gap: 10px; }
        .legal-topbar-back i { font-size: 1.15rem; }

        /* --- Hero banner --- */
        .legal-hero {
            padding: 120px 24px 48px;
            background: linear-gradient(135deg, #0062bd 0%, #0093e9 50%, #00c4ff 100%);
            position: relative; overflow: hidden;
        }
        .legal-hero::before {
            content: ''; position: absolute; top: -40%; right: -10%; width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        .legal-hero-inner {
            max-width: 780px; margin: 0 auto; position: relative; z-index: 1;
        }
        .legal-hero-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
            color: rgba(255,255,255,0.85); margin-bottom: 16px;
        }
        .legal-hero-label i { font-size: 1rem; }
        .legal-hero h1 {
            font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800;
            color: #fff; line-height: 1.2; margin-bottom: 12px;
        }
        .legal-hero-date {
            font-size: 0.875rem; color: rgba(255,255,255,0.7); font-weight: 500;
        }

        /* --- Content --- */
        .legal-content {
            max-width: 780px; margin: 0 auto;
            padding: 48px 24px 80px;
        }

        .legal-section { margin-bottom: 40px; }

        .legal-section h2 {
            font-size: 1.2rem; font-weight: 700; color: #0f172a;
            margin-bottom: 16px; padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }

        .legal-section p {
            font-size: 0.95rem; line-height: 1.85; color: #475569;
            margin-bottom: 14px;
        }

        .legal-section ul {
            padding-left: 20px; margin-bottom: 14px;
        }
        .legal-section ul li {
            font-size: 0.95rem; line-height: 1.85; color: #475569;
            margin-bottom: 6px; padding-left: 4px;
        }
        .legal-section ul li::marker { color: #0071d8; }

        .legal-section ul li b { color: #1e293b; font-weight: 600; }

        .legal-contact-box {
            background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
            border-left: 4px solid #0071d8;
            padding: 20px 24px; border-radius: 0 8px 8px 0;
        }
        .legal-contact-box p { margin-bottom: 0; color: #334155; }

        /* --- Footer mini --- */
        .legal-footer {
            background: linear-gradient(31deg, #0071d8 49%, #00d0ff 100%);
            padding: 24px; text-align: center;
        }
        .legal-footer p {
            color: rgba(255,255,255,0.85); font-size: 0.85rem;
        }

        /* --- Responsive --- */
        @media (max-width: 640px) {
            .legal-hero { padding: 100px 20px 36px; }
            .legal-content { padding: 32px 20px 60px; }
        }
