/* ===================================
   INICIO - HOME PAGE
   =================================== */

.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 0px !important;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.badge-hero {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title>span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-ctas {
    margin-bottom: 30px;
}

.hero-ctas .btn {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.hero-ctas .btn-primary {
    background: var(--secondary);
    border: 2px solid var(--secondary);
}

.hero-ctas .btn-primary:hover {
    background: #3a9fd8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(71, 178, 228, 0.4);
}

.hero-ctas .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.hero-ctas .btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-trust {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-left: 4rem;
}

.hero-img-wrapper {
    animation: float 3s ease-in-out infinite;
}

.hero-img {
    max-width: 200px;
}

.hero-img-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-dashboard-notebook {
    max-width: 130%;
    width: 130%;
    height: auto;
    object-fit: contain;
    animation: slideInRight 0.8s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-dashboard-mobile {
    max-width: 100%;
    width: auto;
    height: auto;
    max-width: 300px;
    object-fit: contain;
    animation: slideInRight 0.8s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    margin: 0 auto;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .hero-ctas {
        flex-direction: column;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .hero-img-container {
        padding: 15px;
        margin-top: 30px;
    }
    .hero-dashboard-mobile {
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .badge-hero {
        font-size: 0.8rem;
    }
    .hero-img-container {
        padding: 10px;
        margin-top: 20px;
    }
    .hero-dashboard-mobile {
        max-width: 240px;
    }
}