/* ==============================================================================
   EVENCARD — ESTILOS DE LA LANDING PAGE
   ============================================================================== */

/* Navbar Flotante */
.landing-navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    background: radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 40%),
                linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    overflow: hidden;
}

.hero-title {
    font-size: 3.4rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4B5563;
    line-height: 1.6;
}

/* Mockup de Teléfono Móvil */
.phone-mockup-wrapper {
    position: relative;
    perspective: 1000px;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: #1E1B4B;
    border-radius: 46px;
    padding: 12px;
    box-shadow: 0 25px 60px -15px rgba(30, 27, 75, 0.3),
                0 0 0 2px rgba(255, 255, 255, 0.1),
                inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    position: relative;
    transform: rotateY(-6deg) rotateX(4deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 36px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Barra superior de notch del smartphone */
.phone-notch {
    position: sticky;
    top: 0;
    width: 130px;
    height: 24px;
    background: #1E1B4B;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    margin: 0 auto;
    z-index: 20;
}

/* Elementos Flotantes Alrededor del Mockup */
.floating-badge {
    position: absolute;
    background: #FFFFFF;
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid #F1F5F9;
    z-index: 10;
    animation: floatUpDown 4s ease-in-out infinite alternate;
}

.badge-top-left {
    top: 15%;
    left: -10%;
}

.badge-bottom-right {
    bottom: 20%;
    right: -10%;
    animation-delay: -2s;
}

@keyframes floatUpDown {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-14px); }
}

@media (max-width: 991px) {
    .floating-badge {
        display: none;
    }
}

/* Sección Cómo Funciona */
.step-number {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    background: var(--ec-primary-light);
    color: var(--ec-primary);
    margin-bottom: 1.2rem;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: var(--ec-radius-lg);
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    box-shadow: var(--ec-shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.1);
    border-color: rgba(108, 99, 255, 0.2);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

/* Plantillas Showcase */
.template-card {
    border-radius: var(--ec-radius-lg);
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--ec-primary);
}

.template-card img {
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.template-card:hover img {
    transform: scale(1.05);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #4338CA 100%);
    border-radius: var(--ec-radius-xl);
    color: #FFFFFF;
    padding: 4.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}
