/* 
PALETA EL MÉTODO 4P's - SIEMPRE USAR ESTAS VARIABLES
Negro: #1a1a1a | Naranja: #FF6B35 | Naranja hover: #FF8C61
Gris texto: #666666 | Fondo claro: #f8f9fa
Tipografía: Montserrat (títulos) + Inter (cuerpo)
*/

:root {
    --negro-profundo: #1a1a1a;
    --naranja-energetico: #FF6B35;
    --naranja-claro: #FF8C61;
    --blanco-puro: #FFFFFF;
    --gris-oscuro: #2d2d2d;
    --gris-medio: #666666;
    --gris-claro: #f8f9fa;
    --naranja-pastel: #fff8f5;

    /* Espaciado */
    --espaciado-xs: 0.25rem;
    --espaciado-sm: 0.5rem;
    --espaciado-md: 1rem;
    --espaciado-lg: 1.5rem;
    --espaciado-xl: 2rem;

    /* Border radius */
    --radio-sm: 4px;
    --radio-md: 8px;
    --radio-lg: 12px;
    --radio-xl: 16px;

    /* Transiciones */
    --transicion-rapida: 0.15s ease;
    --transicion-normal: 0.3s ease;
    --transicion-lenta: 0.5s ease;

    /* Sombras */
    --sombra-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --sombra-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --sombra-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --sombra-xl: 0 12px 24px rgba(0, 0, 0, 0.2);

    /* Tipografía */
    --fuente-principal: 'Inter', sans-serif;
    --fuente-headings: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--fuente-principal);
    overflow-x: hidden;
    background-color: var(--negro-profundo);
    color: var(--blanco-puro);
}

/* 
PALETA EL MÉTODO 4P's - SIEMPRE USAR ESTAS VARIABLES
Negro: #1a1a1a | Naranja: #FF6B35 | Naranja hover: #FF8C61
Gris texto: #666666 | Fondo claro: #f8f9fa
Tipografía: Montserrat (títulos) + Inter (cuerpo)
*/

:root {
    --negro-profundo: #1a1a1a;
    --naranja-energetico: #FF6B35;
    --naranja-claro: #FF8C61;
    --blanco-puro: #FFFFFF;
    --gris-oscuro: #2d2d2d;
    --gris-medio: #666666;
    --gris-claro: #f8f9fa;
    --naranja-pastel: #fff8f5;

    /* Espaciado */
    --espaciado-xs: 0.25rem;
    --espaciado-sm: 0.5rem;
    --espaciado-md: 1rem;
    --espaciado-lg: 1.5rem;
    --espaciado-xl: 2rem;
    --espaciado-2xl: 3rem;

    /* Border radius */
    --radio-sm: 4px;
    --radio-md: 8px;
    --radio-lg: 12px;
    --radio-xl: 16px;

    /* Transiciones */
    --transicion-rapida: 0.15s ease;
    --transicion-normal: 0.3s ease;
    --transicion-lenta: 0.5s ease;

    /* Sombras */
    --sombra-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --sombra-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --sombra-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --sombra-xl: 0 12px 24px rgba(0, 0, 0, 0.2);

    /* Tipografía */
    --fuente-principal: 'Inter', sans-serif;
    --fuente-headings: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--fuente-principal);
    overflow-x: hidden;
    background-color: var(--negro-profundo);
    color: var(--blanco-puro);
}

/* Hero Gradient usando variables */
.hero-gradient {
    background: linear-gradient(135deg, var(--naranja-energetico) 0%, var(--naranja-claro) 25%, var(--gris-oscuro) 75%, var(--negro-profundo) 100%);
    position: relative;
}

/* Formas flotantes animadas usando variables */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--naranja-claro);
    top: 10%;
    left: 5%;
    animation: float1 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--naranja-energetico);
    top: 50%;
    right: 10%;
    animation: float2 10s ease-in-out infinite;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--naranja-claro);
    bottom: 10%;
    left: 50%;
    animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40px, 40px) scale(1.15);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -20px) rotate(180deg);
    }
}

/* Text Glow Effect usando variables */
.text-glow {
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5),
        0 0 40px rgba(255, 107, 53, 0.3);
}

/* ===== SISTEMA DE BOTONES EL MÉTODO 4P's ===== */
.cta-principal {
    background: linear-gradient(135deg, var(--naranja-energetico) 0%, var(--naranja-claro) 100%);
    color: var(--blanco-puro);
    font-family: var(--fuente-headings);
    font-weight: 700;
    padding: var(--espaciado-lg) var(--espaciado-xl);
    border: none;
    border-radius: var(--radio-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--espaciado-sm);
    text-decoration: none;
    transition: all var(--transicion-normal);
    box-shadow: var(--sombra-lg);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.cta-principal:hover {
    background: linear-gradient(135deg, var(--naranja-claro) 0%, var(--naranja-energetico) 100%);
    transform: translateY(-3px);
    box-shadow: var(--sombra-xl);
    color: var(--blanco-puro);
}

.cta-principal:active {
    transform: translateY(-1px);
    box-shadow: var(--sombra-md);
}

/* Efecto de brillo al hover */
.cta-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transicion-lenta);
}

.cta-principal:hover::before {
    left: 100%;
}

.cta-secundario {
    background-color: transparent;
    color: var(--naranja-energetico);
    border: 2px solid var(--naranja-energetico);
    font-family: var(--fuente-principal);
    font-weight: 600;
    padding: var(--espaciado-md) var(--espaciado-lg);
    border-radius: var(--radio-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--espaciado-sm);
    text-decoration: none;
    transition: all var(--transicion-normal);
}

.cta-secundario:hover {
    background-color: var(--naranja-energetico);
    color: var(--blanco-puro);
    transform: translateY(-2px);
    box-shadow: var(--sombra-md);
}

/* ===== SISTEMA DE CARDS ===== */
.card-4ps {
    background: linear-gradient(135deg, var(--blanco-puro) 0%, var(--gris-claro) 100%);
    border-radius: var(--radio-xl);
    padding: var(--espaciado-xl);
    box-shadow: var(--sombra-lg);
    transition: all var(--transicion-normal);
    border: 2px solid transparent;
}

.card-4ps:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-xl);
    border-color: var(--naranja-energetico);
}

.card-destacada {
    background: linear-gradient(135deg, var(--naranja-pastel) 0%, var(--blanco-puro) 100%);
    border: 2px solid var(--naranja-energetico);
}

/* ===== TIPOGRAFÍA ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--fuente-headings);
    font-weight: 700;
    color: var(--negro-profundo);
    line-height: 1.2;
}

.titulo-hero {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--blanco-puro);
    text-align: center;
    margin-bottom: var(--espaciado-lg);
}

.subtitulo {
    font-family: var(--fuente-principal);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--gris-medio);
    line-height: 1.6;
}

/* ===== ANIMACIONES REVEAL ===== */
.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    animation: revealFade 0.8s ease-out forwards;
}

.reveal-fade-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: revealFade 0.8s ease-out 0.3s forwards;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    animation: revealScale 0.8s ease-out forwards;
}

.reveal-fade-up {
    opacity: 0;
    transform: translateY(50px);
    animation: revealFadeUp 0.8s ease-out forwards;
}

@keyframes revealFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes revealFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FAQ SYSTEM ===== */
.faq-item {
    border-radius: var(--radio-lg);
    overflow: hidden;
    margin-bottom: var(--espaciado-md);
    transition: all var(--transicion-normal);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--espaciado-lg);
    background: var(--gris-claro);
    border: none;
    cursor: pointer;
    font-family: var(--fuente-headings);
    font-weight: 600;
    color: var(--negro-profundo);
    transition: all var(--transicion-normal);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: var(--naranja-pastel);
    color: var(--naranja-energetico);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transicion-normal) ease-out;
    background: var(--blanco-puro);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: var(--espaciado-lg);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .cta-principal {
        padding: var(--espaciado-md) var(--espaciado-lg);
        font-size: 0.9rem;
        min-width: 180px;
    }

    .card-4ps {
        padding: var(--espaciado-lg);
    }

    .titulo-hero {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }

    .floating-shape {
        display: none;
        /* Ocultar en móvil para mejor performance */
    }
}

@media (max-width: 480px) {
    :root {
        --espaciado-xl: 1.5rem;
        --espaciado-2xl: 2rem;
    }

    .cta-principal {
        width: 100%;
        justify-content: center;
    }
}

/* ===== UTILIDADES ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--naranja-energetico) 0%, var(--naranja-claro) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.border-naranja {
    border: 2px solid var(--naranja-energetico);
}

.bg-naranja-pastel {
    background-color: var(--naranja-pastel);
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.floating-shape {
    will-change: transform;
    transform: translateZ(0);
    /* Hardware acceleration */
}

.cta-principal,
.card-4ps {
    will-change: transform;
}

/* Prefetch para mejorar carga de fuentes */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Animaciones de Scroll Reveal */
.reveal-fade,
.reveal-fade-delay,
.reveal-fade-up,
.reveal-scale,
.benefit-card,
.bonus-card {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-fade {
    transform: translateY(30px);
}

.reveal-fade-delay {
    transform: translateY(30px);
    transition-delay: 0.2s;
}

.reveal-fade-up {
    transform: translateY(40px);
}

.reveal-scale {
    transform: scale(0.9);
}

.benefit-card,
.bonus-card {
    transform: translateY(50px);
}

/* Estado animado cuando el elemento es visible */
.reveal-fade.animate-in,
.reveal-fade-delay.animate-in,
.reveal-fade-up.animate-in,
.reveal-scale.animate-in,
.benefit-card.animate-in,
.bonus-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Delays progresivos para elementos */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* CTA Button con efecto ripple */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(247, 127, 0, 0.4);
}

.cta-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;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    box-shadow: 0 15px 40px rgba(247, 127, 0, 0.6);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

/* Cards con hover effect */
.benefit-card,
.bonus-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card:hover,
.bonus-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* FAQ Accordion */
.faq-item {
    transition: all 0.3s ease;
}

.faq-question {
    cursor: pointer;
    user-select: none;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    display: block !important;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF6B35, #F77F00);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #F77F00, #FF6B35);
}

/* Pulse effect para badges */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(247, 127, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(247, 127, 0, 0);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #FF6B35, #F77F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shadow glow para elementos importantes */
.shadow-glow {
    box-shadow: 0 0 30px rgba(247, 127, 0, 0.4);
}

/* Responsive Optimizations */
@media (max-width: 768px) {
    .hero-gradient {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .cta-button {
        font-size: 1rem !important;
        padding: 1rem 2rem !important;
    }

    .benefit-card,
    .bonus-card {
        padding: 1.5rem !important;
    }

    .floating-shape {
        opacity: 0.08;
    }
}

@media (max-width: 640px) {

    .shape-1,
    .shape-2,
    .shape-3 {
        width: 200px;
        height: 200px;
    }
}

/* Loading state para botones */
.cta-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.cta-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Print Styles */
@media print {

    .cta-button,
    footer,
    .floating-shape {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* Accessibility */
.cta-button:focus,
.faq-question:focus {
    outline: 3px solid #F77F00;
    outline-offset: 4px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-gradient {
        background: #000;
    }

    .text-white {
        color: #fff !important;
    }

    .cta-button {
        border: 2px solid #fff;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (si el navegador lo detecta) */
@media (prefers-color-scheme: dark) {
    body {
        background: #0a0a0a;
    }
}

/* Utilidades adicionales */
.backdrop-blur-sm {
    backdrop-filter: blur(8px);
}

.border-glow {
    border: 2px solid #F77F00;
    box-shadow: 0 0 20px rgba(247, 127, 0, 0.5),
        inset 0 0 10px rgba(247, 127, 0, 0.2);
}

/* Success/Error states */
.success-state {
    background: linear-gradient(135deg, #10b981, #059669);
    animation: slideInFromTop 0.5s ease;
}

.error-state {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: shake 0.5s ease;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

/* Tooltip personalizado */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #1a1a1a;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

[data-tooltip]:hover::after {
    opacity: 1;
}

/* Aspect ratio fix para imágenes */
.aspect-\[3\/4\] {
    aspect-ratio: 3 / 4;
}

/* Gradient overlays */
.gradient-overlay {
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.9),
            rgba(247, 127, 0, 0.9));
}

/* Selection color */
::selection {
    background: #F77F00;
    color: #fff;
}

::-moz-selection {
    background: #F77F00;
    color: #fff;
}

/* ========================================
   FAQ ACORDEÓN MEJORADO - EL MÉTODO 4P'S
   ======================================== */

/* Container principal del FAQ */
.faq-item {
    transition: all var(--transicion-normal);
    border-radius: var(--radio-lg);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.faq-item.active {
    border-color: var(--naranja-energetico) !important;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

/* Botón de pregunta */
.faq-question {
    border-radius: var(--radio-lg);
    transition: background-color var(--transicion-normal);
}

.faq-question:hover {
    background-color: var(--naranja-pastel);
}

.faq-question:focus {
    outline: 2px solid var(--naranja-energetico);
    outline-offset: 2px;
}

/* Icono del FAQ */
.faq-icon {
    transition: all var(--transicion-normal);
    background-color: var(--naranja-energetico);
}

.faq-icon i {
    transition: transform var(--transicion-normal);
}

.faq-item.active .faq-icon {
    background-color: var(--naranja-claro);
    transform: rotate(180deg);
}

/* Respuesta del FAQ */
.faq-answer {
    transition: max-height var(--transicion-normal) ease-out;
    overflow: hidden;
}

/* Responsive para FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem !important;
    }

    .faq-question h3 {
        font-size: 1rem !important;
        line-height: 1.4;
    }

    .faq-icon {
        width: 2rem !important;
        height: 2rem !important;
        flex-shrink: 0;
    }

    .faq-answer {
        padding: 1rem !important;
        padding-top: 0 !important;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 0.75rem !important;
    }

    .faq-question h3 {
        font-size: 0.9rem !important;
        line-height: 1.3;
    }

    .faq-icon {
        width: 1.75rem !important;
        height: 1.75rem !important;
    }

    .faq-answer {
        padding: 0.75rem !important;
        padding-top: 0 !important;
    }
}

/* Animación suave para el CTA del FAQ */
.faq-item .bg-white {
    transition: all var(--transicion-normal);
}

.faq-item:hover .bg-white {
    background-color: var(--naranja-pastel);
}

/* Estilos para el CTA final del FAQ */
.faq-cta {
    background: linear-gradient(135deg, var(--naranja-energetico) 0%, var(--naranja-claro) 100%);
    border-radius: var(--radio-lg);
    padding: var(--espaciado-xl);
}

.faq-cta h3 {
    font-family: var(--fuente-headings);
    color: var(--blanco-puro);
}

.faq-cta p {
    font-family: var(--fuente-principal);
    color: rgba(255, 255, 255, 0.9);
}

.faq-cta a {
    font-family: var(--fuente-headings);
    transition: all var(--transicion-normal);
}

.faq-cta a:hover {
    transform: scale(1.05);
    box-shadow: var(--sombra-xl);
}

/* Accesibilidad mejorada */
.faq-question[aria-expanded="true"] {
    background-color: var(--naranja-pastel);
}

.faq-question:focus-visible {
    outline: 3px solid var(--naranja-energetico);
    outline-offset: 2px;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    .faq-item,
    .faq-icon,
    .faq-icon i,
    .faq-answer,
    .faq-question {
        transition: none;
    }

    .faq-item:hover {
        transform: none;
    }
}

/* ========================================
   CLASES CSS ESPECÍFICAS - EL MÉTODO 4P'S
   ======================================== */

/* Colores de texto - robustos y específicos */
.text-orange-primary { 
    color: #FF6B35 !important; 
}

.text-orange-light { 
    color: #FF8C61 !important; 
}

.text-dark-primary { 
    color: #1a1a1a !important; 
}

.text-gray-custom { 
    color: #666666 !important; 
}

.text-gray-dark { 
    color: #2d2d2d !important; 
}

/* Fondos - robustos y específicos */
.bg-orange-primary { 
    background-color: #FF6B35 !important; 
}

.bg-orange-light { 
    background-color: #FF8C61 !important; 
}

.bg-dark-primary { 
    background-color: #1a1a1a !important; 
}

.bg-gray-light { 
    background-color: #f8f9fa !important; 
}

.bg-orange-pastel { 
    background-color: #fff8f5 !important; 
}

/* Bordes - robustos y específicos */
.border-orange-primary { 
    border-color: #FF6B35 !important; 
}

.border-orange-light { 
    border-color: #FF8C61 !important; 
}

.border-dark-primary { 
    border-color: #1a1a1a !important; 
}

/* Gradientes específicos para El Método 4P's */
.gradient-orange-hero {
    background: linear-gradient(135deg, #FF6B35 0%, #1a1a1a 100%) !important;
}

.gradient-orange-button {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%) !important;
}

.gradient-dark-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
}

.gradient-orange-card {
    background: linear-gradient(135deg, #FF8C61 0%, #f59e0b 100%) !important;
}

.gradient-purple-card {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
}

/* Botones CTA robustos */
.btn-cta-primary {
    background-color: #FF6B35 !important;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif !important;
}

.btn-cta-primary:hover {
    background-color: #FF8C61 !important;
}

.btn-cta-dark {
    background-color: #1a1a1a !important;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif !important;
}

.btn-cta-dark:hover {
    background-color: #2d2d2d !important;
}

/* Iconos específicos */
.icon-orange { 
    color: #FF6B35 !important; 
}

.icon-green-check { 
    color: #10b981 !important; 
}

.icon-orange-light { 
    color: #FF8C61 !important; 
}

.icon-purple { 
    color: #8b5cf6 !important; 
}

/* Tipografía robusta */
.font-montserrat-bold {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
}

.font-inter-regular {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
}

/* Override para elementos específicos problemáticos */
.benefit-card h3 i {
    color: #FF6B35 !important;
}

.benefit-card .fas.fa-check-circle {
    color: #10b981 !important;
}

.hero-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
}

/* Forzar colores en elementos críticos */
span.text-glow {
    color: #FF6B35 !important;
}

strong {
    color: inherit !important;
}

.fas.fa-fire {
    color: #FF6B35 !important;
}

/* Override ultra específico para elementos problemáticos */
[style*="var(--naranja-energetico)"] {
    color: #FF6B35 !important;
}

[style*="var(--negro-profundo)"] {
    color: #1a1a1a !important;
}

[style*="var(--gris-medio)"] {
    color: #666666 !important;
}

[style*="var(--gris-oscuro)"] {
    color: #2d2d2d !important;
}

[style*="var(--naranja-claro)"] {
    color: #FF8C61 !important;
}

/* Override para backgrounds */
[style*="background-color: var(--naranja-energetico)"] {
    background-color: #FF6B35 !important;
}

[style*="background-color: var(--negro-profundo)"] {
    background-color: #1a1a1a !important;
}

[style*="background-color: var(--gris-claro)"] {
    background-color: #f8f9fa !important;
}

/* Override específico para el body */
body[style*="var(--gris-claro)"] {
    background-color: #f8f9fa !important;
}