.elementor-8281 .elementor-element.elementor-element-886109b:not(.elementor-motion-effects-element-type-background), .elementor-8281 .elementor-element.elementor-element-886109b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-8281 .elementor-element.elementor-element-886109b, .elementor-8281 .elementor-element.elementor-element-886109b > .elementor-background-overlay{border-radius:0px 0px 0px 0px;}.elementor-8281 .elementor-element.elementor-element-886109b{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin-top:0px;margin-bottom:0px;padding:20px 0px 0px 0px;}.elementor-8281 .elementor-element.elementor-element-886109b > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-8281 .elementor-element.elementor-element-9957afe > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-8281 .elementor-element.elementor-element-1bb7441 > .elementor-widget-container{margin:10px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:767px){.elementor-8281 .elementor-element.elementor-element-1bb7441 > .elementor-widget-container{margin:45px 0px 0px 0px;}}@media(min-width:768px){.elementor-8281 .elementor-element.elementor-element-9957afe{width:100%;}}@media(max-width:1024px) and (min-width:768px){.elementor-8281 .elementor-element.elementor-element-9957afe{width:100%;}}/* Start custom CSS for html, class: .elementor-element-c305267 */.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    position: relative;
    
    /* EFECTOS COMBINADOS */
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    animation: 
        iconFloat 4s ease-in-out infinite,
        iconGlow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
    overflow: hidden;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: iconShine 3s linear infinite;
    pointer-events: none;
}

.audience-card:hover .icon-circle {
    animation: 
        iconExcited 0.6s ease-in-out,
        iconFloat 4s ease-in-out infinite,
        iconGlow 2s ease-in-out infinite alternate;
    transform: scale(1.2);
    font-size: 2rem;
}

/* Delays escalonados */
.audience-card:nth-child(1) .icon-circle { animation-delay: 0s; }
.audience-card:nth-child(2) .icon-circle { animation-delay: 1s; }
.audience-card:nth-child(3) .icon-circle { animation-delay: 2s; }
.audience-card:nth-child(4) .icon-circle { animation-delay: 3s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes iconGlow {
    0% { box-shadow: 0 0 25px rgba(255, 255, 255, 0.4); }
    100% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.8); }
}

@keyframes iconShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes iconExcited {
    0%, 100% { transform: scale(1.2) rotate(0deg); }
    25% { transform: scale(1.4) rotate(-15deg); }
    50% { transform: scale(1.3) rotate(15deg); }
    75% { transform: scale(1.4) rotate(-8deg); }
}
.btn-primary-section {
    background: linear-gradient(45deg, #ff6b35, #ff4500);
    border: 2px solid transparent;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    color: white !important; /* Fuerza el blanco siempre */
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    background-clip: padding-box;
}

.btn-primary-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00d9ff, #ff6b35, #ffd23f, #ff6b35);
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -1; /* Importante: mantiene el pseudo-elemento detrás */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    color: white !important; /* Fuerza el blanco en hover */
    text-decoration: none; /* Evita subrayado */
}

.btn-primary-section:hover::before {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

.btn-primary-section:visited,
.btn-primary-section:active,
.btn-primary-section:focus {
    color: white !important; /* Fuerza el blanco en todos los estados */
    text-decoration: none;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4ad1bfe *//* EFECTOS CON TONOS NARANJAS PARA EL PRECIO */
.price-tag {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.currency {
    font-size: 2rem;
    color: #00d9ff;
    line-height: 1;
    font-weight: 700;
    animation: priceSyncGlow 3s ease-in-out infinite;
    text-shadow: 
        0 0 6px rgba(0, 217, 255, 0.5),
        0 0 12px rgba(0, 217, 255, 0.3);
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: #ff6b35;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    animation: priceSyncGlow 3s ease-in-out infinite;
    text-shadow: 
        0 0 8px rgba(255, 107, 53, 0.6),
        0 0 16px rgba(255, 107, 53, 0.4),
        0 0 24px rgba(255, 69, 0, 0.3);
}

/* ANIMACIÓN SINCRONIZADA CON TONOS NARANJAS */
@keyframes priceSyncGlow {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.025);
        filter: brightness(1.15);
        text-shadow: 
            0 0 12px rgba(255, 107, 53, 0.8),
            0 0 20px rgba(255, 69, 0, 0.5),
            0 0 28px rgba(255, 140, 0, 0.3);
    }
}

/* Brillitos con tonos naranjas */
.price-effects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    font-size: 1.1rem;
    animation: syncSparkle 3s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(255, 107, 53, 0.6));
}

.sparkle-1 {
    top: -30px;
    left: -40px;
}

.sparkle-2 {
    top: -25px;
    right: -30px;
}

.sparkle-3 {
    bottom: -20px;
    left: -25px;
}

.sparkle-4 {
    top: 10px;
    left: -60px;
}

@keyframes syncSparkle {
    0%, 100% { 
        opacity: 0.5;
        transform: translateY(0px) scale(0.9);
        filter: drop-shadow(0 0 4px rgba(255, 107, 53, 0.4));
    }
    50% { 
        opacity: 0.9;
        transform: translateY(-6px) scale(1.1);
        filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.8));
    }
}

/* Responsive */
@media(max-width:768px){
    .currency {
        font-size: 1.6rem;
    }
    
    .amount {
        font-size: 3.5rem;
    }
    
    .sparkle {
        font-size: 1rem;
    }
}/* End custom CSS */