.elementor-30490 .elementor-element.elementor-element-20dcf35 > .elementor-widget-container{background-color:transparent;background-image:linear-gradient(180deg, #392F2E 0%, #090909 100%);}.elementor-30490 .elementor-element.elementor-element-2c64cb9{margin-top:0px;margin-bottom:0px;}.elementor-30490 .elementor-element.elementor-element-5056eab > .elementor-widget-container{background-color:transparent;background-image:linear-gradient(180deg, #090909 0%, #392F2E 100%);}.elementor-30490 .elementor-element.elementor-element-91d9f17:not(.elementor-motion-effects-element-type-background), .elementor-30490 .elementor-element.elementor-element-91d9f17 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#AC8080;}.elementor-30490 .elementor-element.elementor-element-91d9f17{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-30490 .elementor-element.elementor-element-91d9f17 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-30490 .elementor-element.elementor-element-38e39c9 > .elementor-widget-container{background-color:transparent;background-image:linear-gradient(124deg, #392F2E 62%, #392F2E 40%);}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-20dcf35 *//* --- BLOQUE 1: HERO SEM --- */
.sem-hero-section {
    
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    padding: 160px 20px 100px; /* Mucho aire arriba para dar importancia */
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 0;
}

/* Fondo atmosférico con Fusión (Máscara) */
.sem-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    
    /* Un brillo rojizo sutil detrás del texto para dar sensación de "alerta/urgencia" */
    background-image: radial-gradient(circle at 50% 40%, rgba(188, 38, 75, 0.15) 0%, transparent 60%);
    
    pointer-events: none;

    /* MÁSCARA DE FUSIÓN PARA QUE NO HAYA CORTES */
    -webkit-mask-image: 
        linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-composite: source-in;
    
    mask-image: 
        linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-composite: intersect;
}

.sem-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Título Gigante */
.sem-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Se adapta a móvil y escritorio */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #ffffff;
}

/* "Solo si sabes por qué" - Destacado en Granate */
.sem-highlight {
    display: block;
    color: #BC264B;
    margin-top: 10px;
    /* Efecto de luz sutil detrás del texto */
    text-shadow: 0 0 40px rgba(188, 38, 75, 0.4);
}

/* "Y para qué" - Blanco pero con énfasis */
.sem-sub-highlight {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300; /* Más fino para contraste */
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.9);
}

/* Divisor elegante */
.sem-divider {
    width: 60px;
    height: 4px;
    background: #BC264B;
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

/* Subtexto */
.sem-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

/* El punto de dolor: Presupuesto que se esfuma */
.sem-pain-point {
    display: block;
    margin-top: 15px;
    color: #ffffff;
    font-weight: 700;
    /* Subrayado sutil en rojo para indicar "peligro/pérdida" */
    border-bottom: 2px solid rgba(188, 38, 75, 0.5); 
    display: inline-block;
    padding-bottom: 2px;
}

/* Animación de entrada suave */
.sem-hero-container {
    animation: fadeUpSem 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

/* Responsive */
@media (max-width: 768px) {
    .sem-hero-section {
        padding: 120px 20px 80px;
    }
    .sem-hero-title {
        line-height: 1.2;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5056eab *//* ====================================== */
/* CSS COMPLETO - EPIC ANIMATIONS */
/* OPTIMIZADO PARA MÓVIL - SIN CORTES */
/* ====================================== */

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

body {
    background: #000;
    overflow-x: hidden;
}

/* --- BLOQUE 2: STORYTELLING SEM --- */
.sem-story-section {
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    padding: 120px 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Máscara suavizada - menos agresiva en los bordes */
    -webkit-mask-image: 
        linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: 
        linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-composite: intersect;
}

/* === PARTÍCULAS FLOTANTES === */
.particles-container {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(188, 38, 75, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(188, 38, 75, 0.8);
    animation: floatParticle 8s infinite ease-in-out;
    opacity: 0;
}

@keyframes floatParticle {
    0% { 
        transform: translate(0, 100vh) scale(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translate(var(--tx), -100vh) scale(1);
        opacity: 0;
    }
}

/* Brillo de fondo mejorado */
.sem-story-glow {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; 
    height: 600px;
    background: radial-gradient(circle, rgba(188, 38, 75, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlowEpic 4s ease-in-out infinite;
}

@keyframes pulseGlowEpic {
    0%, 100% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
    }
}

/* === ONDAS DE ENERGÍA === */
.energy-wave {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(188, 38, 75, 0.3);
    border-radius: 50%;
    animation: expandWave 3s ease-out infinite;
    opacity: 0;
}

.energy-wave:nth-child(2) { animation-delay: 1s; }
.energy-wave:nth-child(3) { animation-delay: 2s; }

@keyframes expandWave {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.sem-story-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 15px;
}

.sem-story-content {
    margin-bottom: 50px;
}

/* === LÍNEAS CON EFECTO FRAGMENTACIÓN === */
.sem-story-line {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fragmentIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.sem-story-line.delay-1 { animation-delay: 0.4s; }
.sem-story-line.delay-2 { animation-delay: 0.8s; }

@keyframes fragmentIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.8);
        filter: blur(10px);
        letter-spacing: 20px;
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
        letter-spacing: normal;
    }
}

/* === ÉNFASIS CON GLITCH === */
.sem-story-emphasis {
    color: #BC264B;
    font-weight: 700;
    position: relative;
    display: inline-block;
    animation: glitchText 3s infinite;
}

@keyframes glitchText {
    0%, 90%, 100% { 
        text-shadow: 0 0 30px rgba(188, 38, 75, 0.8);
    }
    91%, 93% {
        text-shadow: 
            -2px 0 rgba(188, 38, 75, 0.8),
            2px 0 rgba(255, 255, 255, 0.5);
        transform: skew(-0.5deg);
    }
    92% {
        text-shadow: 
            2px 0 rgba(188, 38, 75, 0.8),
            -2px 0 rgba(255, 255, 255, 0.5);
        transform: skew(0.5deg);
    }
}

.sem-story-emphasis::after {
    content: '';
    position: absolute;
    bottom: -2px; 
    left: 0;
    width: 100%; 
    height: 2px;
    background: #BC264B;
    opacity: 0;
    animation: underlineGrow 0.6s ease-out 1.2s forwards;
}

@keyframes underlineGrow {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 0.8; }
}

/* === DIVISOR CON PARTÍCULAS === */
.sem-story-divider {
    width: 80px; 
    height: 3px;
    background: linear-gradient(90deg, transparent, #BC264B, transparent);
    margin: 60px auto;
    opacity: 0;
    position: relative;
    animation: dividerAppear 1.5s ease-out 1.2s forwards;
}

@keyframes dividerAppear {
    0% {
        opacity: 0;
        width: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
    100% {
        opacity: 1;
        width: 80px;
        transform: scaleX(1);
    }
}

/* === FRASE REVELACIÓN CON EXPLOSIÓN === */
.sem-story-reveal {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 40px 0;
    opacity: 0;
    animation: explosionReveal 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.8s forwards;
}

@keyframes explosionReveal {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-5deg);
        filter: blur(20px);
    }
    50% {
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
        filter: blur(0);
    }
}

/* === HIGHLIGHT CON PULSO === */
.sem-story-highlight {
    color: #BC264B;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(188, 38, 75, 0.5);
    position: relative;
    white-space: nowrap;
    display: inline-block;
    animation: highlightPulse 2s ease-in-out infinite 2.5s;
}

@keyframes highlightPulse {
    0%, 100% {
        text-shadow: 0 0 30px rgba(188, 38, 75, 0.5);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 40px rgba(188, 38, 75, 0.9),
            0 0 60px rgba(188, 38, 75, 0.5),
            0 0 80px rgba(188, 38, 75, 0.3);
        transform: scale(1.05);
    }
}

/* Footer */
.sem-story-footer {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 50px;
    opacity: 0;
    animation: fadeSlideIn 1s ease-out 2.2s forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sem-story-footer-bold {
    display: inline-block;
    margin-top: 8px;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 1px solid rgba(188, 38, 75, 0.4);
    padding-bottom: 2px;
    animation: borderGlow 2s ease-in-out infinite 2.5s;
}

@keyframes borderGlow {
    0%, 100% {
        border-bottom-color: rgba(188, 38, 75, 0.4);
    }
    50% {
        border-bottom-color: rgba(188, 38, 75, 0.9);
        text-shadow: 0 0 10px rgba(188, 38, 75, 0.3);
    }
}

/* ====================================== */
/* RESPONSIVE - OPTIMIZADO MÓVIL */
/* ====================================== */
@media (max-width: 768px) {
    .sem-story-section { 
        padding: 80px 20px;
        /* Máscara aún más suave en móvil */
        -webkit-mask-image: 
            linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%),
            linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
        mask-image: 
            linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%),
            linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
    }
    
    .sem-story-container {
        padding: 0 10px;
    }
    
    .sem-story-line { 
        margin: 15px 0;
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    
    .sem-story-divider { 
        margin: 40px auto; 
        width: 60px;
    }
    
    .sem-story-glow { 
        width: 350px; 
        height: 350px; 
    }
    
    .sem-story-reveal {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    
    .sem-story-highlight {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .sem-story-section {
        padding: 60px 15px;
    }
    
    .sem-story-container {
        padding: 0 5px;
    }
    
    .sem-story-line {
        font-size: clamp(1.2rem, 5.5vw, 1.6rem);
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-179b4be *//* --- CONFIGURACIÓN GENERAL --- */
.sem-diferencia-section {
    background-color: transparent;
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    padding: 100px 20px; /* Un poco más de padding arriba */
    position: relative;
    overflow: hidden;
}

.sem-diferencia-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Brillos de fondo */
.sem-diferencia-glow-left,
.sem-diferencia-glow-right {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.25;
    z-index: 1;
}

.sem-diferencia-glow-left {
    top: 10%;
    left: -200px;
    background: radial-gradient(circle, rgba(188, 38, 75, 0.4) 0%, transparent 70%);
}

.sem-diferencia-glow-right {
    bottom: -100px;
    right: -200px;
    background: radial-gradient(circle, rgba(188, 38, 75, 0.2) 0%, transparent 70%);
}

/* --- HEADER DEL BLOQUE (TÍTULO PRINCIPAL) --- */
.sem-diferencia-header {
    text-align: center;
    margin-bottom: 70px; /* Separación con el grid */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sem-diferencia-title {
    font-size: clamp(2rem, 4vw, 3rem); /* Responsive typography */
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 25px;
}

.sem-diferencia-highlight {
    display: block; /* En nueva línea */
    margin-top: 10px;
    color: #BC264B;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(188, 38, 75, 0.3);
}

.sem-diferencia-line {
    width: 80px;
    height: 4px;
    background: #BC264B;
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.sem-diferencia-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* --- GRID LAYOUT (LA ESTRUCTURA COHESIONADA) --- */
.sem-diferencia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch; /* CLAVE: Estira ambas columnas al mismo alto */
}

/* --- COLUMNA 1: IMAGEN --- */
.sem-diferencia-image-col {
    position: relative;
    height: 100%; /* Toma el alto de la columna vecina */
    min-height: 400px;
}

.sem-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%; /* Fuerza el 100% de altura */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.sem-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorte inteligente */
    object-position: center;
    display: block;
    transition: transform 0.7s ease;
}

.sem-image-wrapper:hover img {
    transform: scale(1.05);
}

.sem-image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(188, 38, 75, 0.1), rgba(0,0,0,0.3));
    pointer-events: none;
}

/* --- COLUMNA 2: LISTA "QUÉ HACEMOS" --- */
.sem-diferencia-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sem-column-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-target {
    color: #BC264B;
}

.sem-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Estilo de cada Item */
.sem-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sem-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-left-color: #BC264B;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.sem-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(188, 38, 75, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BC264B;
}

.sem-item-text h4 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.sem-item-text p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .sem-diferencia-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sem-diferencia-image-col {
        height: 350px; /* Altura fija en móvil/tablet */
    }
    
    .sem-diferencia-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .sem-diferencia-section {
        padding: 60px 15px;
    }

    .sem-diferencia-title {
        font-size: 1.75rem;
    }

    .sem-diferencia-image-col {
        height: 250px;
    }
    
    .sem-item {
        padding: 15px;
        gap: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-38e39c9 *//* ====================================== */
/* CSS COMPLETO - PROCESO SEM EPIC */
/* IMAGEN CON DOBLE ALTURA - ARREGLADO */
/* ====================================== */

/* --- BLOQUE 4: CÓMO TRABAJAMOS (CSS ÉPICO) --- */

.sem-proceso-section {
    background: linear-gradient(180deg, #1f1817 0%, #392F2E 100%);
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    
    /* Máscara de fusión */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 95%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 95%, transparent 100%);
}

/* Canvas de partículas interactivas */
.sem-proceso-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Efecto de partículas de fondo */
.sem-proceso-particles {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(188, 38, 75, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(188, 38, 75, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(188, 38, 75, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: particleFloat 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) scale(1) rotate(0deg); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-30px) scale(1.1) rotate(180deg); 
        opacity: 0.8;
    }
}

.sem-proceso-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* === HEADER === */
.sem-proceso-header { 
    text-align: center; 
    margin-bottom: 80px; 
}

.sem-proceso-title { 
    font-size: clamp(2.5rem, 5vw, 3.8rem); 
    font-weight: 700; 
    color: #ffffff; 
    margin-bottom: 25px;
    opacity: 0;
    animation: titleReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(-30px);
        letter-spacing: 10px;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: normal;
    }
}

.sem-proceso-line { 
    width: 80px; 
    height: 4px; 
    background: #BC264B; 
    margin: 0 auto 25px auto; 
    border-radius: 2px;
    opacity: 0;
    animation: lineExpand 0.8s ease-out 0.5s forwards;
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.sem-proceso-subtitle { 
    font-size: clamp(1.1rem, 2vw, 1.4rem); 
    font-weight: 300; 
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === GRID === */
.sem-proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    grid-auto-rows: minmax(280px, auto);
    grid-auto-flow: dense; /* Permite reordenar elementos */
}

/* --- TARJETA (ESTADO BASE VISIBLE) --- */
.sem-proceso-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    overflow: hidden;
    
    /* Configuración por defecto: VISIBLE */
    opacity: 1; 
    transform: translateY(0);
    
    transition: 
        opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
        transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;
}

/* --- CLASE QUE OCULTA (SOLO SI EL JS FUNCIONA) --- */
.sem-proceso-grid.js-waiting .sem-proceso-card {
    opacity: 0 !important;
    transform: translateY(80px) scale(0.9) !important;
}

/* --- CLASE DE ANIMACIÓN (CUANDO HACES SCROLL) --- */
.sem-proceso-grid.is-visible .sem-proceso-card {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* CASCADA ÉPICA (Retrasos) */
.sem-proceso-grid.is-visible .sem-proceso-card:nth-child(1) { transition-delay: 0.1s; }
.sem-proceso-grid.is-visible .sem-proceso-card:nth-child(2) { transition-delay: 0.2s; }
.sem-proceso-grid.is-visible .sem-proceso-card:nth-child(3) { transition-delay: 0.3s; }
.sem-proceso-grid.is-visible .sem-proceso-card:nth-child(4) { transition-delay: 0.4s; }
.sem-proceso-grid.is-visible .sem-proceso-card:nth-child(5) { transition-delay: 0.5s; }
.sem-proceso-grid.is-visible .sem-proceso-card:nth-child(6) { transition-delay: 0.6s; }
.sem-proceso-grid.is-visible .sem-proceso-card:nth-child(7) { transition-delay: 0.7s; }

/* === HOVER ÉPICO === */
.sem-proceso-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(188, 38, 75, 0.5);
    box-shadow: 
        0 25px 60px rgba(188, 38, 75, 0.3),
        0 0 0 1px rgba(188, 38, 75, 0.2) inset;
    transition-delay: 0s !important;
}

/* === EFECTO BRILLO (SHINE) === */
.sem-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.sem-proceso-card:hover .sem-card-shine {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* === ELEMENTOS DE LA TARJETA === */
.sem-card-number { 
    position: absolute; 
    top: 20px; 
    right: 20px; 
    font-size: 4rem; 
    font-weight: 900; 
    color: rgba(188, 38, 75, 0.15); 
    line-height: 1; 
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sem-proceso-card:hover .sem-card-number {
    color: rgba(188, 38, 75, 0.3);
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 30px rgba(188, 38, 75, 0.4);
}

.sem-card-icon { 
    width: 64px; 
    height: 64px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(188, 38, 75, 0.15); 
    border-radius: 12px; 
    color: #BC264B; 
    margin-bottom: 25px; 
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.sem-card-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(188, 38, 75, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.sem-proceso-card:hover .sem-card-icon {
    background: rgba(188, 38, 75, 0.25);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(188, 38, 75, 0.4);
}

.sem-proceso-card:hover .sem-card-icon::before {
    width: 100%;
    height: 100%;
}

.sem-card-icon svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.sem-proceso-card:hover .sem-card-icon svg {
    transform: scale(1.1);
}

.sem-card-title { 
    font-size: 1.35rem; 
    font-weight: 600; 
    color: #ffffff; 
    margin-bottom: 15px; 
    line-height: 1.3;
    transition: color 0.3s ease;
}

.sem-proceso-card:hover .sem-card-title {
    color: #BC264B;
}

.sem-card-desc { 
    font-size: 0.95rem; 
    line-height: 1.6; 
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.sem-proceso-card:hover .sem-card-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* === GLOW DE FONDO === */
.sem-card-glow { 
    position: absolute; 
    bottom: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%; 
    background: radial-gradient(circle, rgba(188, 38, 75, 0.2) 0%, transparent 70%); 
    pointer-events: none; 
    opacity: 0; 
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(0.8);
}

.sem-proceso-card:hover .sem-card-glow { 
    opacity: 1;
    transform: scale(1.2);
}

/* === TARJETA DESTACADA === */
.sem-card-featured { 
    grid-column: span 2; 
    background: linear-gradient(135deg, rgba(188, 38, 75, 0.2) 0%, rgba(255, 255, 255, 0.06) 100%); 
    border: 2px solid rgba(188, 38, 75, 0.4);
    position: relative;
    overflow: hidden;
}

.sem-card-featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent,
        rgba(188, 38, 75, 0.5),
        transparent
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    border-radius: 16px;
}

.sem-card-featured:hover::before {
    opacity: 1;
    animation: rotateBorder 2s linear infinite;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sem-card-badge { 
    display: inline-block; 
    background: linear-gradient(135deg, #BC264B 0%, #8a1a38 100%);
    color: #ffffff; 
    font-size: 0.85rem; 
    font-weight: 600; 
    padding: 6px 14px; 
    border-radius: 20px; 
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(188, 38, 75, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sem-card-featured:hover .sem-card-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(188, 38, 75, 0.5);
}

.sem-glow-intense { 
    opacity: 0.6;
    background: radial-gradient(circle, rgba(188, 38, 75, 0.3) 0%, transparent 70%);
}

.sem-card-featured:hover .sem-glow-intense { 
    opacity: 1;
    transform: scale(1.5);
}

/* === TARJETA DE IMAGEN - DOBLE ALTURA (CRECE HACIA ARRIBA) === */
.sem-proceso-card.sem-image-full {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    position: relative;
    cursor: pointer;
    
    /* CLAVE: Ocupa 2 filas y se posiciona en la segunda fila */
    grid-row: 2 / span 2;
    min-height: 590px;
}

.sem-proceso-card.sem-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
    filter: brightness(0.8) contrast(1.1);
}

.sem-proceso-card.sem-image-full:hover img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

/* Overlay de texto sobre la imagen */
.sem-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 40px 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.sem-proceso-card.sem-image-full:hover .sem-image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.sem-image-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.sem-image-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) { 
    .sem-card-featured { 
        grid-column: span 1; 
    }
    
    .sem-proceso-card.sem-image-full {
        grid-row: span 1;
        min-height: 400px;
    }
}

@media (max-width: 768px) { 
    .sem-proceso-section { 
        padding: 80px 20px; 
    } 
    .sem-proceso-grid { 
        grid-template-columns: 1fr; 
        gap: 25px; 
    } 
    .sem-proceso-card { 
        padding: 30px 25px; 
    } 
    .sem-card-number { 
        font-size: 3rem; 
        top: 15px; 
        right: 15px; 
    } 
    .sem-proceso-header { 
        margin-bottom: 60px; 
    }
    .sem-card-icon { 
        width: 56px; 
        height: 56px; 
    }
    
    .sem-proceso-card.sem-image-full {
        grid-row: span 1;
        min-height: 350px;
    }
}

@media (max-width: 480px) { 
    .sem-card-title { 
        font-size: 1.2rem; 
    }
    
    .sem-proceso-card.sem-image-full {
        min-height: 300px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-844dd26 *//* ====================================== */
/* CSS COMPLETO - REALITY CHECK EPIC */
/* ====================================== */

/* --- BLOQUE 5: REALITY CHECK --- */
.sem-reality-section {
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
    margin: 0;
}

/* Canvas de fondo */
.reality-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* Atmósfera general de fondo */
.reality-atmosphere {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(188, 38, 75, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: atmosphereShift 15s ease-in-out infinite;
    
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

@keyframes atmosphereShift {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.1) rotate(180deg); 
        opacity: 1;
    }
}

/* Partículas flotantes */
.reality-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(188, 38, 75, 0.4);
    border-radius: 50%;
    animation: floatUp 15s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) scale(1);
        opacity: 0;
    }
}

.sem-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* === HEADER DEL BLOQUE === */
.reality-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(-50px);
    animation: headerReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

.reality-header.is-visible {
    animation: headerReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

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

.reality-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}

.title-line-1 {
    display: inline-block;
    color: #ffffff !important;
    animation: titleGlow 3s ease-in-out infinite;
}

.title-line-2 {
    display: inline-block;
    color: #BC264B !important;
    text-shadow: 0 0 40px rgba(188, 38, 75, 0.5);
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 40px rgba(188, 38, 75, 0.5);
    }
    50% {
        transform: scale(1.02);
        text-shadow: 0 0 60px rgba(188, 38, 75, 0.8);
    }
}

/* === DIVISOR VS === */
.reality-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

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

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(188, 38, 75, 0.5), transparent);
    animation: lineStretch 2s ease-in-out infinite;
}

@keyframes lineStretch {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.1); }
}

.divider-text {
    font-size: 2rem;
    font-weight: 900;
    color: #BC264B;
    background: rgba(188, 38, 75, 0.1);
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid rgba(188, 38, 75, 0.3);
    animation: vsRotate 4s linear infinite;
}

@keyframes vsRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* === GRID DE TARJETAS === */
.reality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

/* === ESTILO BASE DE TARJETA === */
.reality-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.reality-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reality-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* === EFECTO DE BORDE ANIMADO === */
.card-border-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%), 
        rgba(255, 255, 255, 0.2), 
        transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 24px;
}

.reality-card:hover .card-border-effect {
    opacity: 1;
}

/* === ICONO GIGANTE === */
.card-icon-wrap {
    font-size: 5rem;
    margin-bottom: 30px;
    text-align: center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-emoji {
    position: relative;
    z-index: 2;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Efecto glitch para el emoji negativo */
.icon-emoji.glitch {
    animation: glitchShake 0.2s ease-in-out;
}

@keyframes glitchShake {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-5px, 2px); }
    50% { transform: translate(5px, -2px); }
    75% { transform: translate(-2px, 5px); }
}

/* Anillos de pulso */
.icon-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 107, 107, 0.6);
    animation: pulsateRing 2s ease-out infinite;
    opacity: 0;
}

.icon-pulse-ring.success {
    border-color: rgba(188, 38, 75, 0.6);
}

.icon-pulse-ring.delay-1 {
    animation-delay: 0.5s;
}

@keyframes pulsateRing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.reality-card h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.reality-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: currentColor;
    opacity: 0.5;
}

/* === TARJETA NEGATIVA (❌) === */
.reality-card.negative h3 { 
    color: #ff6b6b;
    animation: dangerPulse 2s ease-in-out infinite;
}

@keyframes dangerPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 107, 107, 0.3); }
    50% { text-shadow: 0 0 40px rgba(255, 107, 107, 0.6); }
}

/* Luz roja trasera */
.card-glow-red {
    position: absolute;
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    mix-blend-mode: screen;
}

.reality-card.negative:hover .card-glow-red { 
    opacity: 1;
    transform: scale(1.2);
}

.main-warning {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 20px;
    border-left: 4px solid #ff6b6b;
    padding-left: 20px;
    position: relative;
}

.warning-icon {
    display: inline-block;
    margin-right: 10px;
    animation: warningBlink 1.5s ease-in-out infinite;
}

@keyframes warningBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.sub-warning {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.sub-warning strong {
    color: #ff6b6b;
    font-weight: 700;
}

/* Stats de advertencia */
.warning-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    flex: 1;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Efecto de rajaduras */
.crack-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 107, 107, 0.3) 49%, rgba(255, 107, 107, 0.3) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 107, 107, 0.3) 49%, rgba(255, 107, 107, 0.3) 51%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0;
    pointer-events: none;
}

@keyframes crackSpread {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* === TARJETA POSITIVA (✅) === */
.reality-card.positive {
    border-top: 4px solid #BC264B;
}

.reality-card.positive h3 { 
    color: #BC264B;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(188, 38, 75, 0.3); }
    50% { text-shadow: 0 0 40px rgba(188, 38, 75, 0.6); }
}

/* Luz de marca trasera */
.card-glow-brand {
    position: absolute;
    top: 50%; 
    left: 50%; 
    width: 150%; 
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(188, 38, 75, 0.25) 0%, transparent 70%);
    opacity: 0.5;
    transition: all 0.6s ease;
    pointer-events: none;
    filter: blur(40px);
    animation: brandGlowPulse 4s ease-in-out infinite;
}

@keyframes brandGlowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.reality-card.positive:hover .card-glow-brand {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
}

/* Lista de oportunidades */
.opportunity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.opportunity-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.15rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.opportunity-list li.revealed {
    opacity: 1;
    transform: translateX(0);
}

.opportunity-list li:hover {
    transform: translateX(10px);
    color: #ffffff;
}

.li-icon {
    font-size: 1.8rem;
    min-width: 45px;
    text-align: center;
    background: rgba(188, 38, 75, 0.15);
    border-radius: 50%;
    padding: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.opportunity-list li:hover .li-icon {
    background: rgba(188, 38, 75, 0.3);
    transform: rotate(360deg) scale(1.2);
}

.opportunity-list strong {
    color: #BC264B;
    font-weight: 700;
}

/* Badge de éxito */
.success-badge {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(188, 38, 75, 0.2) 0%, rgba(188, 38, 75, 0.05) 100%);
    border: 2px solid rgba(188, 38, 75, 0.4);
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(188, 38, 75, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(188, 38, 75, 0.6);
    }
}

.badge-icon {
    font-size: 1.5rem;
    animation: badgeIconSpin 3s linear infinite;
}

@keyframes badgeIconSpin {
    0%, 90%, 100% { transform: rotate(0deg); }
    95% { transform: rotate(180deg); }
}

.badge-text {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .reality-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .reality-card {
        padding: 40px 30px;
    }
    
    .reality-title { 
        font-size: 2.2rem; 
    }
    
    .card-icon-wrap {
        font-size: 4rem;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .sem-reality-section {
        padding: 80px 20px;
    }
    
    .reality-header {
        margin-bottom: 60px;
    }
    
    .warning-stats {
        flex-direction: column;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7aadeaf *//* Importamos fuente Serif para la cita (si no está ya cargada) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* --- BLOQUE 6: CONFIANZA --- */
.sem-trust-section {
    background-color: #392F2E;
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    margin: 0;
}

/* Atmósfera de fondo (Aquí aplicamos la máscara) */
.trust-atmosphere {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    
    /* Un fondo muy sutil, como una red de conexiones */
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(188, 38, 75, 0.05) 0%, transparent 50%);
    
    pointer-events: none;

    /* MÁSCARA DE FUSIÓN 4 LADOS (Para bordes suaves) */
    -webkit-mask-image: 
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-composite: source-in;
    
    mask-image: 
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-composite: intersect;
}

.sem-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- 1. CITA DE AUTORIDAD --- */
.trust-quote-wrapper {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    line-height: 1;
    color: #BC264B;
    opacity: 0.3;
    margin-bottom: -20px;
    display: block;
}

.trust-quote-text {
    font-family: 'Playfair Display', serif; /* Toque premium */
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400; /* Regular, elegante */
    line-height: 1.3;
    color: rgba(255,255,255,0.9);
}

.quote-highlight {
    font-style: italic;
    font-weight: 700;
    color: #ffffff;
    /* Un subrayado decorativo muy fino */
    border-bottom: 1px solid rgba(188, 38, 75, 0.5);
    padding-bottom: 5px;
}

/* --- 2. GRID DE CREDENCIALES --- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tarjeta Base */
.trust-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trust-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Iconos */
.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Datos */
.trust-data {
    margin-bottom: 15px;
}

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #BC264B;
    line-height: 1;
}

.big-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.data-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
}

.trust-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* --- TARJETA DESTACADA (GOOGLE PARTNER) --- */
.trust-card.featured {
    border-color: rgba(188, 38, 75, 0.3);
    background: rgba(188, 38, 75, 0.03);
}

/* Luz especial de fondo para la destacada */
.google-glow {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    /* Gradiente sutil que rota */
    background: radial-gradient(circle, rgba(188, 38, 75, 0.15) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.trust-card.featured:hover .google-glow {
    opacity: 0.8;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 40px;
    }
    
    .trust-quote-text {
        font-size: 2rem;
    }
    
    .trust-card {
        padding: 30px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cfb8bda *//* --- BLOQUE 7: CTA + FORMULARIO (RESPONSIVE CORREGIDO) --- */
.sem-cta-section {
    background-color: #392F2E;
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    margin: 0;
    box-sizing: border-box;
}

/* Atmósfera de fondo con MÁSCARA DE FUSIÓN */
.cta-atmosphere {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: radial-gradient(circle at 75% 50%, rgba(188, 38, 75, 0.1) 0%, transparent 60%);
    pointer-events: none;
    -webkit-mask-image: 
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: 
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-composite: intersect;
}

.sem-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* Grid Layout */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- COLUMNA IZQUIERDA (TEXTO) --- */
.cta-text-col {
    box-sizing: border-box;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff !important;
}

.highlight-brand {
    color: #BC264B !important;
}

.cta-philosophy p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.cta-divider {
    width: 60px;
    height: 3px;
    background: #BC264B;
    margin: 25px 0;
}

.cta-hook {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.cta-features li {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Caja de contacto directo */
.direct-contact-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #BC264B;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    box-sizing: border-box;
}

.contact-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    margin-bottom: 10px;
    transition: color 0.3s;
    word-break: break-word;
}

.contact-link:hover {
    color: #BC264B;
}

.contact-link .icon { 
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* --- COLUMNA DERECHA (FORMULARIO) --- */
.cta-form-col { 
    position: relative;
    box-sizing: border-box;
}

.form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    box-sizing: border-box;
}

.form-glow {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; 
    height: 80%;
    background: radial-gradient(circle, rgba(188, 38, 75, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.form-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
}

/* Estilos de Inputs */
.form-group { 
    margin-bottom: 18px;
    box-sizing: border-box;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.sv-sem-form input,
.sv-sem-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.sv-sem-form input::placeholder,
.sv-sem-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sv-sem-form input:focus,
.sv-sem-form textarea:focus {
    outline: none;
    border-color: #BC264B;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 2px rgba(188, 38, 75, 0.2);
}

.sv-sem-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Botón de envío */
.submit-btn {
    width: 100%;
    background-color: #BC264B;
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-sizing: border-box;
}

.submit-btn:hover:not(:disabled) {
    background-color: #a01f3d; 
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(188, 38, 75, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* --- RESPONSIVE TABLET --- */
@media (max-width: 1024px) {
    .sem-cta-section {
        padding: 60px 20px;
    }
    
    .cta-grid {
        gap: 50px;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    }
    
    .form-card {
        padding: 30px;
    }
}

/* --- RESPONSIVE MÓVIL --- */
@media (max-width: 768px) {
    .sem-cta-section {
        padding: 50px 15px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-text-col { 
        text-align: left;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .highlight-brand {
        display: inline;
    }
    
    .cta-philosophy p {
        font-size: 1rem;
    }
    
    .cta-hook {
        font-size: 1rem;
    }
    
    .cta-features li {
        font-size: 0.95rem;
    }
    
    .direct-contact-box {
        padding: 15px;
    }
    
    .contact-link {
        font-size: 0.95rem;
    }
    
    .form-card {
        padding: 25px 20px;
    }
    
    .form-header {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .sv-sem-form input,
    .sv-sem-form textarea {
        padding: 11px 13px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 13px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .sem-cta-section {
        padding: 40px 10px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-philosophy p {
        font-size: 0.95rem;
    }
    
    .form-card {
        padding: 20px 15px;
    }
    
    .contact-link {
        font-size: 0.9rem;
    }
}/* End custom CSS */
/* Start custom CSS *//* Fuerza el fondo negro en todas las capas estructurales */
html, body, #page, .site-content, .site-inner, .elementor-section, .entry-content {
    background-color: #392F2E !important;
}

/* Elimina márgenes extraños que a veces añaden los temas */
.site-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}/* End custom CSS */