

/* ======= HERO SECTION ======= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: radial-gradient(circle at 50% 15%, rgba(215, 169, 147, 0.15) 0%, var(--bg-color) 60%);
}

.hero-content {
    max-width: 800px;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content h2 span {
    color: var(--accent-light); /* Aquí destacamos la palabra con el beige corporativo */
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ======= FEATURES SECTION ======= */
.features {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 4rem;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(224, 97, 38, 0.3); /* Borde naranja al pasar el mouse por encima */
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h5 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-light); /* H5 en color beige solicitado */
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ======= PROCESO SECTION ======= */
.process-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--brand-orange);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step h4 {
    font-size: 1.3rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}



/* ======= MOBILE RESPONSIVE ======= */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav a {
        margin-left: 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero {
        padding-top: 140px;
    }

    .cta-section .container {
        padding: 3rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
}
