/* Hero Section Improvements */

/* Main Hero Section */
.yone-hero-enhanced {
    background: linear-gradient(135deg, #e6f7f5 0%, #eaf7fa 100%);
    padding-top: 140px; /* Further increased padding to create space from larger header */
    padding-bottom: 120px; /* Increased bottom padding for more space */
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.03);
    min-height: 700px; /* Altura mínima para asegurar espacio suficiente */
}

/* Adjust Hero Grid for Mobile First */
.yone-hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    align-items: center;
}

/* Then adjust for larger screens */
@media (min-width: 992px) {
    .yone-hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }
}

/* Hero Badge */
.yone-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2A9D8F 0%, #3CAEA3 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem; /* Added space below badge */
}

.yone-hero-badge span {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
}

.yone-hero-badge i {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

/* Hero Title */
.yone-hero-enhanced .yone-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #264653;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem; /* Added space below title */
}

.yone-hero-title-main {
    position: relative;
    display: inline-block;
    color: #2A9D8F;
    font-size: 4.2rem; /* Increased size */
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(42, 157, 143, 0.15);
    margin-bottom: 0.5rem; /* Added space between title parts */
}

.yone-hero-title-secondary {
    color: #264653;
    font-size: 3.5rem; /* Increased size */
    font-weight: 700;
}

/* Hero Subtitle */
.yone-hero-enhanced .yone-hero-subtitle {
    font-size: 1.4rem;
    color: #264653;
    opacity: 0.85;
    font-weight: 500;
    max-width: 100%;
    text-align: right;
    margin-bottom: 2rem; /* Added space below subtitle */
    line-height: 1.6;
}

/* Hero Features */
.yone-hero-features-wrapper {
    margin-bottom: 2.5rem; /* Increased space below features */
}

.yone-hero-enhanced .yone-hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem; /* Increased gap between features */
}

.yone-hero-feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 1rem 1.25rem; /* Increased padding */
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.yone-hero-feature-icon {
    width: 40px; /* Increased size */
    height: 40px; /* Increased size */
    border-radius: 50%;
    background-color: rgba(42, 157, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.25rem; /* Increased margin */
    color: #2A9D8F;
    font-size: 1.1rem; /* Increased size */
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.yone-hero-feature-text {
    font-weight: 600;
    font-size: 1rem; /* Increased size */
    color: #264653;
}

/* Hero Buttons */
.yone-hero-enhanced .yone-hero-buttons {
    display: flex;
    gap: 1.5rem; /* Increased gap between buttons */
    margin-bottom: 2.5rem; /* Increased space below buttons */
    justify-content: flex-start;
}

.yone-hero-enhanced .yone-btn-primary {
    background: linear-gradient(135deg, #2A9D8F 0%, #3CAEA3 100%);
    border: none;
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
    transition: all 0.3s ease;
    padding: 1rem 2rem; /* Increased padding */
    font-weight: 700;
    font-size: 1.1rem; /* Increased font size */
    border-radius: 8px;
}

.yone-hero-enhanced .yone-btn-outline {
    border: 2px solid rgba(42, 157, 143, 0.5);
    color: #2A9D8F;
    background: transparent;
    transition: all 0.3s ease;
    padding: 1rem 2rem; /* Increased padding */
    font-weight: 700;
    font-size: 1.1rem; /* Increased font size */
    border-radius: 8px;
}

/* Hero Stats */
.yone-hero-stats {
    display: flex;
    gap: 3rem; /* Increased gap between stats */
    margin-top: 1rem; /* Added space above stats */
    justify-content: flex-start;
}

.yone-hero-stat-number {
    font-size: 2.2rem; /* Increased size */
    font-weight: 800;
    color: #2A9D8F;
    margin-bottom: 0.5rem; /* Added space below number */
}

.yone-hero-stat-text {
    font-size: 1rem; /* Increased size */
    color: #264653;
    opacity: 0.8;
    font-weight: 500;
}

/* Hero Illustration */
.yone-hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.yone-app-mockup {
    position: relative;
    z-index: 2;
}

.yone-app-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor para el mockup del teléfono a la derecha del texto */
.phone-mockup-container-right {
    position: relative;
    display: flex;
    justify-content: flex-end; /* Cambiado de center a flex-end para mover a la derecha */
    align-items: flex-start; /* Alinear al inicio para subir el teléfono */
    width: 100%;
    max-width: 320px; /* Reducido de 450px */
    margin-left: auto;
    margin-top: -210px; /* Aumentado de -30px a -120px para subir 90px más */
    margin-right: 120px; /* Nuevo margen para mover 40px a la derecha */
    transition: all 0.3s ease;
    padding-top: 20px; /* Espacio adicional arriba */
}

.yone-app-phone-frame-img {
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    max-height: 550px; /* Reducido de 600px */
    display: block;
    width: 90%; /* Reducido de 100% */
    transition: all 0.3s ease;
}
 