/* Estilos para la página de inicio */

.home-title {
    color: #1c0d10;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.home-subtitle {
    color: #9c4957;
    font-size: 1.2rem;
    font-weight: 400;
}

.home-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(156, 73, 87, 0.2);
}

.home-card-icon {
    color: #9c4957;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.home-card-title {
    color: #1c0d10;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.home-card-description {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.home-card-button {
    width: 100%;
    margin-top: auto;
}

@media (max-width: 768px) {
    .home-title {
        font-size: 2rem;
    }

    .home-subtitle {
        font-size: 1rem;
    }

    .home-card {
        padding: 1.5rem;
    }
}

