/* ========================================
   FUNCIONALIDADES CSS - SalonBookIt
   Estilos especificos de la pagina de funcionalidades
   ======================================== */

/* === FEATURE SECTIONS === */
.feature-section {
    padding: 80px 0;
}

.feature-section:nth-child(odd) {
    background: var(--white);
}

.feature-section:nth-child(even) {
    background: var(--gray-50);
}

.feature-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-section:nth-child(even) .feature-section-grid {
    direction: rtl;
}

.feature-section:nth-child(even) .feature-section-grid > * {
    direction: ltr;
}

.feature-section-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 16px;
}

.feature-section-content p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* === FEATURE LIST === */
.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--gray-600);
}

.feature-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

/* === FEATURE IMAGE === */
.feature-section-image {
    background: var(--gray-100);
    border-radius: 16px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
    position: relative;
}

.feature-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-section-image:hover img {
    transform: scale(1.03);
}

/* === RESPONSIVE FUNCIONALIDADES === */
@media (max-width: 1024px) {
    .feature-section-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-section:nth-child(even) .feature-section-grid {
        direction: ltr;
    }

    .feature-section-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .feature-section {
        padding: 60px 0;
    }

    .feature-section-content h2 {
        font-size: 26px;
    }

    .feature-section-image {
        height: 250px;
    }
}
