/* assets/css/landing.css */

body {
    font-family: 'Inter', sans-serif;
    padding-top: 76px; /* Altura del navbar fijo */
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9) !important;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Feature cards */
.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 16px;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Paso a paso */
.step-number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Pricing cards */
.pricing-card {
    border-radius: 20px;
    transition: transform 0.3s;
    position: relative;
}

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

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid #667eea;
}

/* Widget de precios */
#price-ticker table {
    margin-bottom: 0;
}

#price-ticker td {
    padding: 0.75rem 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

/* Animaciones */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}