@import url(base.css);

/* Estilos generales para todos los botones */
.btn {
    font-family: "Inter", sans-serif;
    display: flex;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Botón primario (azul) */
.btn-primary {
    background: var(--Colors-Brand-300);
    color: white;
}

.btn-primary:hover {
    background-color: var(--Colors-Brand-400);
}

.btn-primary-home{
    background: var(--Colors-Brand-300);
    color: white;
    margin-top: 20px;
}

/* Botón secundario (gris oscuro) */
.btn-secondary {
    background-color: var(--Colors-Neutral-100);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--Colors-Neutral-200);
}

/* Botón de más opciones */
.btn-more {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0px;
}