:root {
    --primary-color: #28a745;
    --secondary-color: #20c997;
}

body {
    font-family: 'figtree', sans-serif;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.dashboard-preview {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    padding: 2rem;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
    position: relative;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

/* Features */
.features-section {
    padding: 5rem 0;
    background: white;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* Benefits */
.benefits-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.benefit-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e9f7ef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-showcase {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-showcase h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Pricing */
.pricing-section {
    padding: 5rem 0;
    background: white;
}

.pricing-card {
    background: white;
    border: 2px solid #ecf1f5;
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
        /* AGREGAR ESTAS LÍNEAS: */
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.15);
}
.pricing-card .pricing-features {
    /* AGREGAR ESTA LÍNEA: */
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-card .btn {
    /* AGREGAR ESTA LÍNEA: */
    margin-top: auto;
}
.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price {
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    color: #6c757d;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 0;
}

/* Buttons */
.btn-success {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-outline-success {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Floating notification */
.floating-notification {
    position: absolute;
    bottom: -10px;
    right: -30px;
    z-index: 10;
}

.floating-notification .bg-success {
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* User Notice Banner */
.user-notice-banner {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 0.75rem 0;
    position: sticky;
    top: 76px; /* Altura del navbar fijo */
    z-index: 1020;
    box-shadow: 0 2px 10px rgba(0,123,255,0.3);
}

.user-notice-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.user-notice-banner .notice-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.user-notice-banner .notice-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.user-notice-banner .notice-text {
    font-weight: 500;
    margin: 0 1rem;
}

.user-notice-banner .notice-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-notice-banner .notice-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.user-notice-banner .notice-link:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.user-notice-banner .btn-close {
    filter: invert(1);
    opacity: 0.8;
    margin-left: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-preview {
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 2rem;
    }
    
    .floating-notification {
        display: none;
    }
    
    .user-notice-banner {
        position: relative;
        top: 0;
        padding: 1rem 0;
    }
    
    .user-notice-banner .notice-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .user-notice-banner .notice-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .user-notice-banner .notice-link {
        display: block;
        text-align: center;
    }
}