/* ========================================
   EMPATHICOS PAGE - HEART JOURNEY STYLES
   ======================================== */

/* Hero Section */
.empathicos-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 30%, #4a1942 70%, #1a0a2e 100%);
}

.empathicos-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 50%);
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.heart {
    position: absolute;
    font-size: 2rem;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.h1 { top: 10%; left: 10%; animation-delay: 0s; }
.h2 { top: 20%; right: 15%; animation-delay: 1s; }
.h3 { top: 60%; left: 5%; animation-delay: 2s; }
.h4 { top: 70%; right: 10%; animation-delay: 3s; }
.h5 { top: 40%; left: 80%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-30px) rotate(10deg); opacity: 0.7; }
}

.empathicos-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.empathicos-hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9a8d4 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    letter-spacing: 3px;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-tagline {
    font-size: 1.6rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-empathicos {
    display: inline-block;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #ec4899 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.4),
                0 0 60px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.cta-button-empathicos:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.5),
                0 0 80px rgba(139, 92, 246, 0.3);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Intro Section */
.empathicos-intro {
    background: linear-gradient(180deg, #1a0a2e 0%, #0f051d 100%);
    padding: 6rem 0;
    position: relative;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3),
                0 0 100px rgba(139, 92, 246, 0.2);
    border: 3px solid rgba(236, 72, 153, 0.4);
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.02);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #f9a8d4;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
}

.intro-highlight {
    font-size: 1.4rem !important;
    color: #fbbf24 !important;
    font-weight: 600;
    font-style: italic;
    margin: 1.5rem 0 !important;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: #f9a8d4;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid #ec4899;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 1rem;
}

.cta-button-secondary:hover {
    background: rgba(236, 72, 153, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

/* Journey Characters Section */
.journey-characters {
    background: linear-gradient(135deg, #2d1b4e 0%, #4a1942 50%, #2d1b4e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.journey-characters::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

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

.section-title-glow {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.character-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.character-card:hover {
    transform: translateY(-10px);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.2);
}

.character-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.character-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.character-card:hover .character-image img {
    transform: scale(1.1);
}

.character-card h3 {
    font-size: 1.3rem;
    color: #f9a8d4;
    margin-bottom: 0.8rem;
}

.character-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* Vulnerability Section */
.vulnerability-section {
    background: linear-gradient(180deg, #0f051d 0%, #1a0a2e 100%);
    padding: 6rem 0;
}

.vulnerability-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.vulnerability-text h2 {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.vulnerability-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
}

.vulnerability-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.vulnerability-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #ec4899;
    transition: all 0.3s ease;
}

.vulnerability-list li:hover {
    background: rgba(236, 72, 153, 0.1);
    transform: translateX(5px);
}

.list-icon {
    font-size: 1.3rem;
}

.vulnerability-image {
    position: relative;
}

.vulnerability-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3),
                0 0 100px rgba(236, 72, 153, 0.2);
    border: 3px solid rgba(139, 92, 246, 0.4);
}

/* How Empathicos Works Section */
.how-empathicos-works {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
    padding: 6rem 0;
}

.journey-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.journey-step {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.journey-step:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(236, 72, 153, 0.3);
    transform: translateX(10px);
}

.journey-step.reverse {
    grid-template-columns: 1fr 200px;
}

.journey-step.reverse:hover {
    transform: translateX(-10px);
}

.journey-step.reverse .step-icon {
    order: 2;
}

.journey-step.reverse .step-content {
    order: 1;
    text-align: right;
}

.step-icon {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(236, 72, 153, 0.5);
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.3);
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #f9a8d4;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Final CTA Section */
.empathicos-final-cta {
    background: linear-gradient(135deg, #4a1942 0%, #2d1b4e 50%, #1a0a2e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.empathicos-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
}

.final-cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-highlight {
    font-size: 1.4rem !important;
    color: #fbbf24 !important;
    font-weight: 600;
    font-style: italic;
    margin: 2rem 0 !important;
}

.cta-button-final {
    display: inline-block;
    background: linear-gradient(135deg, #ec4899 0%, #fbbf24 50%, #ec4899 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.4),
                0 0 80px rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.cta-button-final:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.5),
                0 0 100px rgba(251, 191, 36, 0.3);
}

.cta-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .intro-content,
    .vulnerability-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-image,
    .vulnerability-image {
        order: -1;
        text-align: center;
    }
    
    .intro-image img,
    .vulnerability-image img {
        max-width: 350px;
    }
    
    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journey-step,
    .journey-step.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .journey-step.reverse .step-icon,
    .journey-step.reverse .step-content {
        order: unset;
    }
    
    .journey-step.reverse .step-content {
        text-align: center;
    }
    
    .step-icon {
        margin: 0 auto 1.5rem;
    }
    
    .journey-step:hover,
    .journey-step.reverse:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .empathicos-hero h1 {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .section-title-glow {
        font-size: 2rem;
    }
    
    .characters-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .vulnerability-text h2,
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .final-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-button-final {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .empathicos-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button-empathicos {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .step-icon {
        width: 150px;
        height: 150px;
    }
}
