/* Estilos para Página Sobre Nosotros (about.html) */


            /* Design Tokens & Animations */
            .about-hero {
                text-align: center !important;
                padding: 2rem 1rem 2rem 1rem;
                min-width: 80% !important;
                margin: 0 auto;
            }

            .about-title {
                text-align: center !important;
                margin-bottom: 0 !important;
                font-size: clamp(2rem, 5vw, 3rem) !important;
                line-height: 1.2 !important;
            }

            .about-tag {
                display: inline-block;
                padding: 0.35rem 1rem;
                font-size: 0.75rem;
                font-weight: 700;
                letter-spacing: 0.1em;
                color: #3b82f6;
                background: rgba(59, 130, 246, 0.1);
                border-radius: 50px;
                margin-bottom: 1.5rem;
                border: 1px solid rgba(59, 130, 246, 0.25);
            }

            .gradient-text {
                display: block;
                font-family: "Source Sans Pro", Helvetica, sans-serif;
                text-transform: uppercase;
                font-size: clamp(1.4rem, 6.8vw, 4rem) !important;
                text-align: center !important;
                margin: 0.5rem auto 1.5rem auto !important;
                background: linear-gradient(135deg, #10b981, #3b82f6);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                font-weight: 900;
                padding: 0.1em 0.3em;
                line-height: 1.2;
                max-width: 100%;
                box-sizing: border-box;
                letter-spacing: -0.02em !important;
                white-space: nowrap !important;
            }

            @keyframes quizGradientGlow {
                0% {
                    background-position: 0% 50%;
                }

                50% {
                    background-position: 100% 50%;
                }

                100% {
                    background-position: 0% 50%;
                }
            }

            .about-lead {
                text-align: center;
                font-size: 1.25rem !important;
                line-height: 1.8;
                color: var(--muted);
                margin-bottom: 1.5rem;
            }

            .about-hero-actions {
                display: flex;
                gap: 1.25rem;
                justify-content: center;
                flex-wrap: wrap;
            }

            .about-btn-primary {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.75rem;
                white-space: nowrap;
                padding: 1rem 2.25rem;
                border-radius: 12px !important;
                font-weight: 700;
                font-size: 1.1rem;
                text-decoration: none !important;
                border: none !important;
                background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
                color: #ffffff !important;
                box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3), 0 4px 20px rgba(59, 130, 246, 0.2);
                transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, background 0.3s ease;
                cursor: pointer;
            }

            .about-btn-primary:hover {
                transform: translateY(-3px);
                box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4), 0 10px 25px rgba(59, 130, 246, 0.3);
            }

            .about-btn-primary:active {
                transform: translateY(-1px) scale(0.98);
            }

            .about-btn-secondary {
                display: inline-flex;
                align-items: center;
                gap: 0.75rem;
                padding: 1rem 2.25rem;
                border-radius: 12px !important;
                font-weight: 700;
                font-size: 1.1rem;
                text-decoration: none !important;
                border: 2px solid var(--border) !important;
                background: rgba(255, 255, 255, 0.05);
                color: var(--text) !important;
                transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
                cursor: pointer;
                backdrop-filter: blur(8px);
            }

            .about-btn-secondary:hover {
                transform: translateY(-3px);
                border-color: #3b82f6 !important;
                background: rgba(59, 130, 246, 0.08);
                box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
            }

            .about-btn-secondary:active {
                transform: translateY(-1px) scale(0.98);
            }

            .btn-icon-animate {
                transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                display: inline-block;
            }

            .about-btn-primary:hover .btn-icon-animate {
                transform: scale(1.25) rotate(15deg);
            }

            .about-btn-secondary:hover .btn-icon-animate {
                transform: scale(1.25) rotate(-15deg);
            }

            .about-divider {
                border: 0;
                height: 1px;
                background: linear-gradient(to right, transparent, var(--border), transparent);
                margin: 3rem 0;
            }

            .about-section {
                margin: 4rem 0;
            }

            .section-title {
                text-align: center;
                font-size: 2rem;
                margin-bottom: 0.5rem;
                font-weight: 700;
            }

            .section-subtitle {
                text-align: center;
                color: var(--muted);
                font-size: 1.1rem;
                margin-bottom: 2.5rem;
            }

            .about-grid-2 {
                display: grid;
                grid-template-columns: 1.2fr 0.8fr;
                gap: 3rem;
                align-items: center;
            }

            .philosophy-text h3 {
                font-size: 1.75rem;
                margin-bottom: 1.5rem;
            }

            .philosophy-stats-card {
                background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
                border: 1px solid var(--border);
                border-radius: 16px;
                padding: 2.5rem 2rem;
                display: flex;
                flex-direction: column;
                gap: 2rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
            }

            .stat-item {
                text-align: center;
            }

            .stat-num {
                display: block;
                font-size: 2.5rem;
                font-weight: 800;
                line-height: 1;
                background: linear-gradient(135deg, #3b82f6, #10b981);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                margin-bottom: 0.25rem;
            }

            .stat-label {
                font-size: 0.9rem;
                font-weight: 600;
                color: var(--muted);
                text-transform: uppercase;
                letter-spacing: 0.05em;
            }

            /* Pillars Cards */
            .about-pillars-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .about-pillar-card {
                background: var(--surface-bg);
                border: 1px solid var(--border);
                border-radius: 16px;
                padding: 2rem;
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            }

            .about-pillar-card:hover {
                transform: translateY(-5px);
                border-color: rgba(59, 130, 246, 0.4);
                box-shadow: 0 12px 30px rgba(59, 130, 246, 0.08);
            }

            .pillar-icon-wrapper {
                width: 50px;
                height: 50px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .i-target {
                color: #3b82f6;
                background: rgba(59, 130, 246, 0.1);
            }

            .i-habits {
                color: #10b981;
                background: rgba(16, 185, 129, 0.1);
            }

            .i-guide {
                color: #8b5cf6;
                background: rgba(139, 92, 246, 0.1);
            }

            .about-pillar-card h4 {
                font-size: 1.25rem;
                margin-bottom: 0.75rem;
                font-weight: 700;
            }

            .about-pillar-card p {
                font-size: 0.95rem !important;
                line-height: 1.6;
                color: var(--muted);
                margin: 0;
            }

            /* Timeline Methodology */
            .methodology-timeline {
                max-width: 700px;
                margin: 0 auto;
                position: relative;
                padding-left: 2.5rem;
            }

            .methodology-timeline::before {
                content: '';
                position: absolute;
                left: 17px;
                top: 10px;
                bottom: 10px;
                width: 2px;
                background: var(--border);
            }

            .timeline-step {
                position: relative;
                margin-bottom: 2.5rem;
            }

            .timeline-step:last-child {
                margin-bottom: 0;
            }

            .step-badge {
                position: absolute;
                left: -2.5rem;
                top: 0;
                width: 36px;
                height: 36px;
                border-radius: 50%;
                background: var(--surface-bg);
                border: 2px solid #3b82f6;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 700;
                color: #3b82f6;
                z-index: 2;
                box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
            }

            .step-content {
                padding-left: 1rem;
            }

            .step-content h4 {
                font-size: 1.15rem;
                margin-bottom: 0.5rem;
                font-weight: 700;
            }

            .step-content p {
                font-size: 0.95rem !important;
                line-height: 1.6;
                color: var(--muted);
                margin: 0;
            }

            /* Values Badges */
            .values-flex {
                display: flex;
                gap: 1rem;
                justify-content: center;
                flex-wrap: wrap;
                margin-top: 1.5rem;
            }

            .value-badge {
                padding: 0.6rem 1.25rem;
                background: var(--surface-bg);
                border: 1px solid var(--border);
                border-radius: 50px;
                font-size: 0.95rem;
                font-weight: 600;
                color: var(--text);
                display: flex;
                align-items: center;
                gap: 0.5rem;
                transition: background 0.2s ease, border-color 0.2s ease;
            }

            .value-badge i {
                color: #10b981;
            }

            .value-badge:hover {
                background: rgba(16, 185, 129, 0.05);
                border-color: rgba(16, 185, 129, 0.3);
            }

            /* Payment & Security */
            .payment-security-section {
                max-width: 600px;
                margin: 4rem auto;
            }

            .payment-card {
                display: flex;
                align-items: center;
                gap: 1.5rem;
                background: linear-gradient(135deg, rgba(2, 114, 182, 0.05), rgba(0, 69, 124, 0.05));
                border: 1px solid rgba(2, 114, 182, 0.2);
                border-radius: 16px;
                padding: 1.75rem;
            }

            .payment-icon {
                font-size: 2.5rem;
                color: #00457c;
                /* PayPal Dark Blue */
                display: flex;
                align-items: center;
            }

            html[data-theme="dark"] .payment-icon {
                color: #0079c1;
                /* PayPal Light Blue */
            }

            .payment-details h4 {
                font-size: 1.15rem;
                margin-bottom: 0.4rem;
                font-weight: 700;
            }

            .payment-details p {
                font-size: 0.9rem !important;
                line-height: 1.5;
                color: var(--muted);
                margin: 0;
            }

            /* Bottom CTA Banner */
            .about-cta-banner {
                position: relative;
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.45) 100%);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                border-radius: 24px;
                padding: 4rem 2rem;
                text-align: center;
                margin: 4.5rem 0;
                box-shadow:
                    0 4px 30px rgba(0, 0, 0, 0.02),
                    0 20px 50px rgba(0, 0, 0, 0.04),
                    inset 0 1px 1px rgba(255, 255, 255, 0.8),
                    inset 0 -1px 1px rgba(0, 0, 0, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.6);
                overflow: hidden;
                transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                    border-color 0.4s ease;
            }

            html[data-theme="dark"] .about-cta-banner {
                background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.45) 100%);
                box-shadow:
                    0 4px 30px rgba(0, 0, 0, 0.15),
                    0 20px 50px rgba(0, 0, 0, 0.25),
                    inset 0 1px 1px rgba(255, 255, 255, 0.08),
                    inset 0 -1px 1px rgba(0, 0, 0, 0.15);
                border: 1px solid rgba(255, 255, 255, 0.08);
            }

            .about-cta-banner:hover {
                transform: translateY(-4px) scale(1.005);
                box-shadow:
                    0 10px 40px rgba(0, 0, 0, 0.05),
                    0 30px 60px rgba(0, 0, 0, 0.06),
                    inset 0 1px 2px rgba(255, 255, 255, 0.9);
                border-color: rgba(59, 130, 246, 0.4);
            }

            html[data-theme="dark"] .about-cta-banner:hover {
                box-shadow:
                    0 10px 40px rgba(0, 0, 0, 0.25),
                    0 30px 60px rgba(0, 0, 0, 0.35),
                    inset 0 1px 2px rgba(255, 255, 255, 0.12);
                border-color: rgba(16, 185, 129, 0.35);
            }

            /* Shine reflection sweep effect */
            .about-cta-banner::after {
                content: '';
                position: absolute;
                top: 0;
                left: -150%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg,
                        transparent,
                        rgba(255, 255, 255, 0.1) 20%,
                        rgba(255, 255, 255, 0.4) 40%,
                        rgba(255, 255, 255, 0.1) 60%,
                        transparent);
                transform: skewX(-25deg);
                z-index: 1;
                pointer-events: none;
            }

            html[data-theme="dark"] .about-cta-banner::after {
                background: linear-gradient(90deg,
                        transparent,
                        rgba(255, 255, 255, 0.02) 20%,
                        rgba(255, 255, 255, 0.15) 40%,
                        rgba(255, 255, 255, 0.02) 60%,
                        transparent);
            }

            .about-cta-banner:hover::after {
                animation: cta-shine-sweep 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            }

            @keyframes cta-shine-sweep {
                0% {
                    left: -150%;
                }

                100% {
                    left: 150%;
                }
            }

            .cta-overlay-glow {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background:
                    radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
                    radial-gradient(circle at 85% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 45%);
                z-index: 0;
                pointer-events: none;
                transition: opacity 0.4s ease;
            }

            html[data-theme="dark"] .cta-overlay-glow {
                background:
                    radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 85% 80%, rgba(139, 92, 246, 0.18) 0%, transparent 50%);
            }

            .cta-overlay-glow::before,
            .cta-overlay-glow::after {
                content: '';
                position: absolute;
                border-radius: 50%;
                filter: blur(80px);
                opacity: 0.35;
                pointer-events: none;
                z-index: 0;
                animation: cta-glow-pulse 8s infinite alternate ease-in-out;
            }

            .cta-overlay-glow::before {
                width: 250px;
                height: 250px;
                background: rgba(16, 185, 129, 0.2);
                top: -50px;
                left: -50px;
            }

            .cta-overlay-glow::after {
                width: 300px;
                height: 300px;
                background: rgba(59, 130, 246, 0.25);
                bottom: -80px;
                right: -80px;
                animation-delay: -4s;
            }

            html[data-theme="dark"] .cta-overlay-glow::after {
                background: rgba(139, 92, 246, 0.25);
            }

            @keyframes cta-glow-pulse {
                0% {
                    transform: translate(0, 0) scale(1);
                    opacity: 0.3;
                }

                100% {
                    transform: translate(30px, 20px) scale(1.1);
                    opacity: 0.5;
                }
            }

            .cta-banner-content {
                position: relative;
                z-index: 2;
            }

            .about-cta-banner h3 {
                color: var(--text) !important;
                font-size: 2rem;
                font-weight: 800;
                margin-bottom: 1rem;
                letter-spacing: -0.02em;
                line-height: 1.25;
            }

            html[data-theme="dark"] .about-cta-banner h3 {
                color: #ffffff !important;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            }

            .about-cta-banner p {
                color: var(--muted) !important;
                font-size: 1.15rem !important;
                margin-bottom: 2.25rem;
                max-width: 650px;
                margin-left: auto;
                margin-right: auto;
                line-height: 1.6;
            }

            html[data-theme="dark"] .about-cta-banner p {
                color: rgba(255, 255, 255, 0.85) !important;
            }

            .btn-icon-animate {
                display: inline-block;
                flex-shrink: 0;
                transition: transform 0.2s ease;
            }

            .about-btn-primary:hover .btn-icon-animate {
                animation: flame-flicker 1s infinite alternate ease-in-out;
            }

            @keyframes flame-flicker {
                0% {
                    transform: scale(1) rotate(0deg);
                    filter: drop-shadow(0 0 2px #ef4444);
                }

                25% {
                    transform: scale(1.1) rotate(-3deg);
                    filter: drop-shadow(0 0 5px #f59e0b);
                }

                50% {
                    transform: scale(1.05) rotate(3deg);
                }

                75% {
                    transform: scale(1.15) rotate(-2deg);
                    filter: drop-shadow(0 0 7px #ef4444);
                }

                100% {
                    transform: scale(1.1) rotate(2deg);
                }
            }

            .cta-actions {
                display: flex;
                justify-content: center;
            }

            /* Contact Card */
            .contact-card-section {
                max-width: 600px;
                margin: 4rem auto 0 auto;
            }

            .contact-card {
                background: var(--surface-bg);
                border: 1px solid var(--border);
                border-radius: 16px;
                padding: 2.5rem 2rem;
                text-align: center;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
            }

            .contact-header i {
                font-size: 2.5rem;
                color: #3b82f6;
                margin-bottom: 1.25rem;
            }

            .contact-header h3 {
                font-size: 1.5rem;
                margin-bottom: 0.5rem;
                font-weight: 700;
            }

            .contact-header p {
                font-size: 0.95rem !important;
                color: var(--muted);
                margin-bottom: 1.75rem;
                line-height: 1.6;
            }

            .about-contact-action {
                display: flex;
                justify-content: center;
                margin-top: 1.5rem;
            }

            .about-contact-btn {
                display: inline-flex;
                align-items: center;
                gap: 0.75rem;
                padding: 0.9rem 2.25rem;
                border-radius: 12px !important;
                font-weight: 700;
                font-size: 1.05rem;
                text-decoration: none !important;
                border: none !important;
                background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
                color: #ffffff !important;
                box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
                transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
                cursor: pointer;
            }

            .about-contact-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 22px rgba(59, 130, 246, 0.45);
            }

            .about-contact-btn:active {
                transform: translateY(-1px) scale(0.98);
            }

            .contact-icon-fly {
                transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                display: inline-block;
            }

            .about-contact-btn:hover .contact-icon-fly {
                transform: translate(4px, -4px) scale(1.15);
            }

            /* Responsive Adjustments */
            @media (max-width: 980px) {
                .about-grid-2 {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }

                .about-pillars-grid {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }

                .about-hero {
                    padding: 2.5rem 1rem 2rem 1rem;
                }

                .about-hero br {
                    display: block !important;
                }

                .about-hero h1 {
                    font-size: 2.25rem;
                }

                .section-title {
                    font-size: 1.75rem;
                }
            }
        

/* Accesibilidad: Reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
    body.user-reduced-motion *, body.user-reduced-motion ::before, body.user-reduced-motion ::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
