/* CARACTERÍSTICAS */
.features {
    background: var(--background);
    padding: 64px 32px;
}

.features-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 48px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.card {
    background: var(--background-grey);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(236, 64, 122, 0.20);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.card-icon-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
}

.card-icon-image img {
    width: 125px;
    height: 125px;
    object-fit: contain;
}

.card-icon-botas {
    margin-bottom: 0px;
}

.card-icon-tesito img {
    width: 100px;
    height: 100px;
}

.card-icon-flor img {
    width: 100px;
    height: 100px;
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SOBRE LA APP */
.about {
    background: linear-gradient(180deg, #FFFFFF 0%, #FCE4EC 100%);
    padding: 64px 32px;
    text-align: center;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-description {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.about-list {
    text-align: left;
    display: inline-block;
    font-size: 16px;
    color: var(--text-primary);
    line-height: 2;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .features {
        padding: 48px 16px;
    }

    .features-title {
        font-size: 24px;
    }

    .about {
        padding: 48px 16px;
    }

    .about-title {
        font-size: 24px;
    }
}
