.hero-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,74,173,0.03) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(40,167,69,0.03) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.min-vh-75 {
    min-height: 75vh;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hover-lift:hover .feature-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-section .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .badge,
.hero-section h1,
.hero-section .lead,
.hero-section .row,
.hero-section .mt-4,
.hero-section .mt-5 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-section .badge { animation-delay: 0.1s; }
.hero-section h1 { animation-delay: 0.2s; }
.hero-section .lead { animation-delay: 0.3s; }
.hero-section .row { animation-delay: 0.4s; }
.hero-section .mt-4 { animation-delay: 0.5s; }
.hero-section .mt-5 { animation-delay: 0.6s; }
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.card:hover .feature-icon {
    transform: translateY(-5px);
}

.logo-showcase {
    position: relative;
    min-height: 400px;
}

.cloud {
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.cloud-1 {
    animation-delay: 0s;
}

.cloud-2 {
    animation-delay: 3s;
}

.star {
    font-size: 1.5rem;
    animation: twinkle 2s ease-in-out infinite;
}

.star-1 {
    animation-delay: 0.5s;
}

.star-2 {
    animation-delay: 1s;
}

.step-number {
    font-weight: bold;
    font-size: 1.2rem;
}

/* Animaciones */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .logo-placeholder {
        width: 250px !important;
        height: 250px !important;
    }
    
    .cloud {
        font-size: 2rem;
    }
}

/* Placeholder para logo - remueve esto cuando añadas tu logo */
.logo-placeholder {
    position: relative;
    overflow: hidden;
}

.logo-placeholder::after {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.feature-card {
    transition: all .25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,.08);
}

.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: .95rem;
    color: #6c757d;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: bold;
}