/* HERO SIMPLE - SIN COMPLICACIONES */

.hero-simple {
    min-height: 100vh;
    padding-top: 70px;
    display: flex;
    align-items: center;
    background: #f8f9fa;
}

[data-theme="dark"] .hero-simple {
    background: #1a1a1a;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

[data-theme="dark"] .hero-text h1 {
    color: #ffffff;
}

.hero-text p {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

[data-theme="dark"] .hero-text p {
    color: #e0e0e0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero.btn-primary {
    background: #ff6b35;
    color: #ffffff;
}

.btn-hero.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-hero.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-hero.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

[data-theme="dark"] .btn-hero.btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}

[data-theme="dark"] .btn-hero.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.hero-icon i {
    font-size: 6rem;
    color: #ffffff;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-icon {
        width: 200px;
        height: 200px;
    }
    
    .hero-icon i {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}