/* ===== COACHING PERSONALIZADO - CSS TECNOLÓGICO PREMIUM ===== */

/* ===== VARIABLES ESPECÍFICAS ===== */
:root {
    --coaching-primary: #c70039;
    --coaching-secondary: #ff1744;
    --coaching-accent: #ff6b9d;
    --coaching-gold: #ffd700;
    --coaching-silver: #c0c0c0;
    --coaching-tech-blue: #00d4ff;
    --coaching-tech-purple: #8b5cf6;
    --coaching-dark: #0a0a0a;
    --coaching-darker: #050505;
    --coaching-border: #333333;
    --coaching-glow: 0 0 40px rgba(199, 0, 57, 0.4);
    --coaching-glow-strong: 0 0 60px rgba(199, 0, 57, 0.6);
    --coaching-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== SECCIÓN PRINCIPAL ===== */
.coaching-personalizado {
    position: relative;
    background: linear-gradient(135deg, var(--coaching-darker) 0%, var(--coaching-dark) 50%, #1a1a1a 100%);
    padding: 120px 0;
    overflow: hidden;
    border-top: 2px solid var(--coaching-primary);
    border-bottom: 2px solid var(--coaching-primary);
}

/* ===== EFECTOS DE FONDO ===== */
.coaching-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.coaching-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--coaching-primary), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--coaching-tech-blue), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--coaching-gold), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--coaching-accent), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: coaching-particles-float 20s linear infinite;
    opacity: 0.3;
}

.coaching-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(199, 0, 57, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199, 0, 57, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: coaching-grid-move 30s linear infinite;
}

.coaching-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(199, 0, 57, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: coaching-glow-pulse 8s ease-in-out infinite;
}

/* ===== ANIMACIONES ===== */
@keyframes coaching-particles-float {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-30px) translateX(30px); }
    66% { transform: translateY(30px) translateX(-30px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes coaching-grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes coaching-glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes coaching-counter-pulse {
    0%, 100% { transform: scale(1); box-shadow: var(--coaching-glow); }
    50% { transform: scale(1.05); box-shadow: var(--coaching-glow-strong); }
}

@keyframes coaching-text-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(199, 0, 57, 0.5); }
    50% { text-shadow: 0 0 20px rgba(199, 0, 57, 0.8), 0 0 30px rgba(199, 0, 57, 0.6); }
}

/* ===== HEADER ===== */
.coaching-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.coaching-title-container {
    position: relative;
    display: inline-block;
}

.coaching-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.coaching-gradient {
    background: linear-gradient(135deg, var(--coaching-primary) 0%, var(--coaching-secondary) 50%, var(--coaching-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: coaching-text-glow 3s ease-in-out infinite;
}

.coaching-subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--coaching-gold);
    margin-top: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.coaching-tech-line {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--coaching-primary), var(--coaching-tech-blue), var(--coaching-primary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--coaching-primary);
}

/* ===== CONTENIDO PRINCIPAL ===== */
.coaching-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ===== CONTENIDO DE TEXTO ===== */
.coaching-text-content {
    position: relative;
}

.coaching-question {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(199, 0, 57, 0.05);
    border: 1px solid rgba(199, 0, 57, 0.2);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.coaching-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 0, 57, 0.1), transparent);
    animation: coaching-shine 3s ease-in-out infinite;
}

.coaching-question-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--coaching-tech-blue);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.coaching-answer {
    font-size: 1.2rem;
    color: var(--coaching-gold);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.coaching-difference {
    margin-bottom: 50px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(199, 0, 57, 0.1) 0%, rgba(255, 23, 68, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(199, 0, 57, 0.3);
    position: relative;
}

.coaching-difference-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.coaching-difference-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--coaching-primary);
    text-shadow: 0 0 20px rgba(199, 0, 57, 0.6);
}

.coaching-warning {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 25px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.coaching-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 193, 7, 0.1) 50%, transparent 70%);
    animation: coaching-warning-shine 4s ease-in-out infinite;
}

.coaching-warning-icon {
    font-size: 2rem;
    color: #ffc107;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.coaching-warning-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffc107;
    position: relative;
    z-index: 1;
}

/* ===== CARACTERÍSTICAS ===== */
.coaching-features {
    margin-bottom: 50px;
}

.coaching-features-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--coaching-primary);
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 20px rgba(199, 0, 57, 0.5);
}

.coaching-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(199, 0, 57, 0.2);
    border-radius: 15px;
    transition: var(--coaching-transition);
    position: relative;
    overflow: hidden;
}

.coaching-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 0, 57, 0.1), transparent);
    transition: left 0.6s ease;
}

.coaching-feature-item:hover::before {
    left: 100%;
}

.coaching-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--coaching-primary);
    box-shadow: var(--coaching-glow);
}

.coaching-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coaching-primary), var(--coaching-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(199, 0, 57, 0.4);
}

.coaching-feature-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.coaching-feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.coaching-feature-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--coaching-primary);
    margin-bottom: 10px;
}

.coaching-feature-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.coaching-feature-highlight {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(199, 0, 57, 0.2) 0%, rgba(255, 23, 68, 0.2) 100%);
    border: 2px solid var(--coaching-primary);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.coaching-feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(199, 0, 57, 0.1) 50%, transparent 70%);
    animation: coaching-highlight-shine 3s ease-in-out infinite;
}

.coaching-feature-highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coaching-gold);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ===== TESTIMONIO ===== */
.coaching-testimonial {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(199, 0, 57, 0.1) 0%, rgba(255, 23, 68, 0.1) 100%);
    border-left: 5px solid var(--coaching-primary);
    border-radius: 15px;
    position: relative;
}

.coaching-testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--coaching-primary);
    font-weight: bold;
    opacity: 0.3;
}

.coaching-testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* ===== ADVERTENCIA FINAL ===== */
.coaching-final-warning {
    margin-top: 50px;
    padding: 30px;
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coaching-final-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(220, 53, 69, 0.1) 50%, transparent 70%);
    animation: coaching-warning-shine 4s ease-in-out infinite;
}

.coaching-final-warning-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.coaching-final-warning p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ===== SECCIÓN CTA ===== */
.coaching-cta-section {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===== CONTADOR ===== */
.coaching-counter-container {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(199, 0, 57, 0.1) 0%, rgba(255, 23, 68, 0.1) 100%);
    border: 2px solid var(--coaching-primary);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.coaching-counter-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(199, 0, 57, 0.1) 50%, transparent 70%);
    animation: coaching-counter-shine 3s ease-in-out infinite;
}

.coaching-counter-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--coaching-gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.coaching-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.coaching-counter-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--coaching-primary);
    text-shadow: 0 0 30px rgba(199, 0, 57, 0.8);
    animation: coaching-counter-pulse 2s ease-in-out infinite;
}

.coaching-counter-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.coaching-counter-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--coaching-accent);
    position: relative;
    z-index: 1;
}

/* ===== LISTA DE ESPERA ===== */
.coaching-waitlist-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.coaching-waitlist-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 193, 7, 0.1) 50%, transparent 70%);
    animation: coaching-warning-shine 4s ease-in-out infinite;
}

.coaching-waitlist-icon {
    font-size: 1.5rem;
    color: #ffc107;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.coaching-waitlist-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.coaching-waitlist-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.coaching-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    transition: var(--coaching-transition);
}

.coaching-whatsapp-link:hover {
    color: #128c7e;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

/* ===== BOTONES CTA ===== */
.coaching-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coaching-cta-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: var(--coaching-transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

.coaching-cta-primary::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 0.6s ease;
}

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

.coaching-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.5);
}

.coaching-cta-primary i {
    font-size: 1.5rem;
}

.coaching-cta-primary span {
    font-size: 1.2rem;
    font-weight: 700;
}

.coaching-cta-primary small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.coaching-cta-secondary {
    text-align: center;
    padding: 20px;
    background: rgba(199, 0, 57, 0.1);
    border: 1px solid rgba(199, 0, 57, 0.3);
    border-radius: 15px;
}

.coaching-cta-secondary p {
    font-size: 1.1rem;
    color: var(--coaching-primary);
    font-weight: 600;
    margin: 0;
}

/* ===== MENSAJE FINAL ===== */
.coaching-final-message {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(199, 0, 57, 0.1) 0%, rgba(255, 23, 68, 0.1) 100%);
    border: 2px solid var(--coaching-primary);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.coaching-final-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(199, 0, 57, 0.1) 50%, transparent 70%);
    animation: coaching-highlight-shine 3s ease-in-out infinite;
}

.coaching-final-message p {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--coaching-gold);
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ===== ANIMACIONES ADICIONALES ===== */
@keyframes coaching-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes coaching-warning-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes coaching-highlight-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes coaching-counter-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .coaching-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .coaching-cta-section {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .coaching-personalizado {
        padding: 80px 0;
    }
    
    .coaching-main-title {
        font-size: 2.5rem;
    }
    
    .coaching-subtitle {
        font-size: 1.4rem;
    }
    
    .coaching-content {
        gap: 40px;
    }
    
    .coaching-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .coaching-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .coaching-counter-number {
        font-size: 3rem;
    }
    
    .coaching-warning {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .coaching-waitlist-notice {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .coaching-main-title {
        font-size: 2rem;
    }
    
    .coaching-subtitle {
        font-size: 1.2rem;
    }
    
    .coaching-question,
    .coaching-difference,
    .coaching-warning,
    .coaching-feature-item,
    .coaching-testimonial,
    .coaching-final-warning {
        padding: 20px;
    }
    
    .coaching-counter-container,
    .coaching-waitlist-notice,
    .coaching-cta-primary,
    .coaching-cta-secondary,
    .coaching-final-message {
        padding: 20px;
    }
    
    .coaching-counter-number {
        font-size: 2.5rem;
    }
}

